Merge pull request #14 from factorhouse/update-jetty #430
Workflow file for this run
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: Slipway Test | |
on: [push] | |
jobs: | |
clojure: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
project: [slipway-jetty9, slipway-jetty10, slipway-jetty11] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Java8 | |
if: ${{ matrix.project == 'slipway-jetty9' }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '8' | |
- name: Setup Java11 | |
if: ${{ matrix.project != 'slipway-jetty9' }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- name: Install clojure tools | |
uses: DeLaGuardo/setup-clojure@12.3 | |
with: | |
lein: 'latest' | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check | |
working-directory: ./${{ matrix.project }} | |
run: lein with-profile +smoke deps | |
- name: Fmt | |
working-directory: ./${{ matrix.project }} | |
run: lein fmt | |
- name: Kondo | |
working-directory: ./${{ matrix.project }} | |
run: lein kondo | |
- name: Test | |
working-directory: ./${{ matrix.project }} | |
run: lein test | |
- name: Uberjar | |
working-directory: ./${{ matrix.project }} | |
run: lein uberjar | |
- name: NVD | |
working-directory: ./${{ matrix.project }} | |
run: ../scripts/dependency-checker.sh | |
- name: Persist NVD | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: nvd-${{ matrix.project }}-${{ github.sha }} | |
path: ./${{ matrix.project }}/dependency-check/report/* | |
retention-days: 1 |