update workbox from 4.3.1 to 6.5.4 #8
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: Lein Test | |
on: | |
push: | |
paths: | |
- 'src/**' | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Setup Clojure | |
uses: DeLaGuardo/[email protected] | |
with: | |
lein: '2.9.1' # Specify the Leiningen version you need | |
- name: Cache Maven dependencies | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.m2/repository | |
~/.gitlibs | |
~/.deps.clj | |
key: cljdeps-${{ hashFiles('project.clj') }} | |
restore-keys: | | |
${{ runner.os }}-m2- | |
- name: Run tests | |
run: lein test |