Skip to content

Fix MD rendering of docstring

d4ba62f
Select commit
Loading
Failed to load commit list.
Closed

Rewrite as wrapper around Java impl #33

Fix MD rendering of docstring
d4ba62f
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request required action May 15, 2025 in 39s

Build Errored

The build errored. This is a change from the previous build, which passed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #33 Rewrite as wrapper around Java impl.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Clojure
Operating System Linux (Noble)
JDK Version openjdk17
Ruby Version 2.6
Build Configuration
{
  "language": "clojure",
  "os": [
    "linux"
  ],
  "dist": "noble",
  "addons": {
    "apt": {
      "packages": [
        "gzip"
      ]
    }
  },
  "jdk": [
    "openjdk17"
  ],
  "rvm": [
    "2.6"
  ],
  "stages": [
    {
      "name": "test",
      "if": "branch = develop"
    },
    {
      "name": "publish",
      "if": "tag IS present"
    }
  ],
  "cache": {
    "bundler": true
  },
  "jobs": {
    "include": [
      {
        "stage": "build",
        "name": "Build & Test",
        "script": [
          "lein test"
        ]
      },
      {
        "stage": "test",
        "install": [
          "lein deps",
          "lein pom"
        ],
        "script": [
          "lein test"
        ]
      },
      {
        "stage": "publish",
        "install": [
          "lein deps",
          "lein pom"
        ],
        "script": [
          "lein test"
        ],
        "deploy": [
          {
            "provider": "script",
            "script": "lein deploy",
            "cleanup": false,
            "on": {
              "tags": true,
              "all_branches": true
            }
          }
        ]
      }
    ]
  }
}