fix #35 #44
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: Develop & Snapshot | |
on: | |
push: | |
branches: | |
- "develop" | |
jobs: | |
build-and-snapshot: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: '11' | |
- name: Install Planck | |
run: sudo add-apt-repository -y ppa:mfikes/planck && sudo apt-get update -y && sudo apt-get install -y planck | |
- name: Clojure CLI | |
uses: DeLaGuardo/setup-clojure@master | |
with: | |
cli: '1.11.2.1446' | |
- name: Cache All The Things | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.m2/repository | |
~/.gitlibs | |
~/.clojure | |
~/.cpcache | |
key: ${{ runner.os }}-${{ hashFiles('**/deps.edn') }} | |
- name: Run Tests | |
run: clojure -T:build ci :cljs true :snapshot true | |
- name: Deploy Snapshot | |
run: clojure -T:build deploy :snapshot true | |
env: | |
CLOJARS_PASSWORD: ${{secrets.DEPLOY_TOKEN}} | |
CLOJARS_USERNAME: ${{secrets.DEPLOY_USERNAME}} | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '17', '20' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: ${{ matrix.java }} | |
- name: Clojure CLI | |
uses: DeLaGuardo/setup-clojure@master | |
with: | |
cli: '1.11.2.1446' | |
- name: Cache All The Things | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.m2/repository | |
~/.gitlibs | |
~/.clojure | |
~/.cpcache | |
key: ${{ runner.os }}-${{ hashFiles('**/deps.edn') }} | |
- name: Run Tests | |
run: clojure -T:build test |