Skip to content

fixup! fixup! try another action #162

fixup! fixup! try another action

fixup! fixup! try another action #162

Workflow file for this run

name: Clojure CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
container:
image: clojure:openjdk-17-tools-deps
steps:
- name: Checkout
uses: actions/[email protected]
## This is optional but will speed up clojure steps
- name: Cache mvn/git deps
uses: actions/cache@v3
id: cache-deps
with:
path: |
/root/.gitlibs
/root/.m2
key: ${{ runner.os }}-${{ hashFiles('**/deps.edn') }}
## The clojure tools-deps image has very little installed software,
## install minimum requirements for the foundationdb one
- name: Install curl
run: |
apt-get update
apt-get -qyy install curl sudo
- name: Install foundationdb
uses: foundationdb-rs/[email protected]
with:
version: 6.2.20
- name: Check
run: clojure -T:project check
- name: Test
run: clojure -T:project test
- name: Lint
run: clojure -T:project lint
- name: Format
run: clojure -T:project format-check