chore(deps): bump actions/download-artifact in /.github/workflows #721
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: Tests | |
on: | |
push: | |
jobs: | |
unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Cache maven deps | |
uses: actions/[email protected] | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/deps.edn') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Prepare java | |
uses: actions/[email protected] | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Install clojure tools-deps | |
uses: DeLaGuardo/[email protected] | |
with: | |
cli: '1.11.1.1413' | |
bb: '1.3.184' | |
- name: Unit Tests | |
env: | |
LMGREP_FEATURE_BUNDLED_ANALYZERS: true | |
LMGREP_FEATURE_STEMPEL: true | |
LMGREP_FEATURE_SNOWBALL: true | |
LMGREP_FEATURE_RAUDIKKO: true | |
run: | | |
bb deps-prep | |
bb test |