Finish pipeline impl #221
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3.0.2 | |
with: | |
fetch-depth: 0 | |
submodules: 'recursive' | |
- uses: actions/setup-java@v3.5.0 | |
with: | |
distribution: "zulu" | |
java-version: "8" | |
- uses: DeLaGuardo/setup-clojure@9.5 | |
with: | |
cli: 1.11.1.1155 | |
- run: git config --global user.email "hello@health-samurai.io" && git config --global user.name "ftr" | |
name: Set up git config | |
- run: make init | |
- run: make test |