Skip to content

during sign up process, the first user in the system will be register… #78

during sign up process, the first user in the system will be register…

during sign up process, the first user in the system will be register… #78

Workflow file for this run

name: CI
on:
- push
- workflow_dispatch
jobs:
Tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Prepare java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'
- name: Install Clojure Tools
uses: DeLaGuardo/[email protected]
with:
cli: 1.11.1.1165 # Clojure CLI based on tools.deps
# (optional) To avoid rate limit errors please provide github token
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Cache clojure dependencies
uses: actions/cache@v3
with:
path: |
~/.m2/repository
~/.gitlibs
~/.deps.clj
# List all files containing dependencies:
key: cljdeps-${{ hashFiles('deps.edn') }}
restore-keys: cljdeps-
- name: Run all tests
run: clojure -T:build test