Skip to content

version-fn versioning support (adds git-rev-count and epoch versionin… #190

version-fn versioning support (adds git-rev-count and epoch versionin…

version-fn versioning support (adds git-rev-count and epoch versionin… #190

Workflow file for this run

name: Clojure CI
on: [push]
env:
GIT_SSH_COMMAND: "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no"
jobs:
build:
runs-on: ubuntu-latest
container:
image: clojure:openjdk-17-tools-deps-slim-bullseye
volumes:
- ${{ github.workspace }}:${{ github.workspace }}
steps:
- uses: actions/checkout@v3.0.2
name: "Checkout git repository"
- name: Cache dependencies
uses: actions/cache@v3
id: cache-deps
with:
path: |
/root/.gitlibs
/root/.m2
key: ${{ runner.os }}-${{ hashFiles('**/deps.edn') }}
- name: Check
id: check
run: clojure -T:project check
- name: Lint
id: lint
run: clojure -T:project lint
- name: Format
run: clojure -T:project format-check