fix audit vuln #393
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: CI | |
on: | |
push: | |
branches: | |
- '*' | |
tags: | |
- 'v*.*.*' # Enforce Semantic Versioning | |
jobs: | |
lint: | |
uses: yetanalytics/workflow-linter/.github/workflows/[email protected] | |
with: | |
lint-directories: 'src' | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup CI Environment | |
uses: yetanalytics/action-setup-env@v1 | |
- name: Cache Deps | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.m2 | |
~/.gitlibs | |
key: ${{ runner.os }}-deps-${{ hashFiles('deps.edn') }} | |
restore-keys: | | |
${{ runner.os }}-deps- | |
- name: Run tests | |
run: make test |