[bot] synced file(s) with Wall-Brew-Co/rebroadcast #13
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: Backwards Compatibility Tests | |
on: ["workflow_dispatch", "pull_request"] | |
jobs: | |
compatibility_test: | |
strategy: | |
matrix: | |
clojure_version: ['1.8.0', '1.9.0', '1.10.0', '1.11.0', '1.12.0'] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ matrix.clojure_version }} | |
cancel-in-progress: true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/[email protected] | |
- name: Print concurrency group | |
run: echo '${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}' | |
- name: Cache maven dependencies | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-maven | |
with: | |
path: ~/.m2 | |
save-always: true | |
key: ${{ runner.os }}-clj-${{ hashFiles('**/project.clj') }} | |
restore-keys: | | |
${{ runner.os }}-clj | |
- name: Install Clojure Dependencies | |
run: lein deps | |
- name: Override Clojure Version | |
run: lein change :dependencies:org.clojure/clojure set '"${{ matrix.clojure_version }}"' | |
- name: Run all tests | |
run: lein test | |