Skip to content

Commit

Permalink
Add CI jobs for both fixed and latest bb versions
Browse files Browse the repository at this point in the history
  • Loading branch information
rads committed Apr 27, 2024
1 parent ad9dda8 commit 66f6aaf
Showing 1 changed file with 31 additions and 3 deletions.
34 changes: 31 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,47 @@ on: [push, pull_request]
jobs:
bb-run-test-linux:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
bb-version: [1.3.190, latest]
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
bb: latest
bb: ${{ matrix.bb-version }}
- run: bb run test

bb-run-test-macos:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
bb-version: [1.3.190, latest]
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
bb: ${{ matrix.bb-version }}
- run: bb run test

bb-run-test-windows:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
bb-version: [latest]
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
bb: latest
bb: ${{ matrix.bb-version }}
- name: bb test
shell: bash
run: |
Expand All @@ -33,12 +57,16 @@ jobs:
bb-run-lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
bb-version: [1.3.190, latest]
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
bb: latest
bb: ${{ matrix.bb-version }}
clj-kondo: latest
- run: bb run lint

0 comments on commit 66f6aaf

Please sign in to comment.