Add backward compatibility promesa.exec.bulkhead/invoke! fn #312
This file contains hidden or 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: Test | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| schedule: | |
| # monthly | |
| - cron: "0 0 1 * *" | |
| env: | |
| #bump to clear caches | |
| ACTION_CACHE_VERSION: 'v1' | |
| jobs: | |
| test-clj: | |
| strategy: | |
| matrix: | |
| java: ['11', '17', '21', '24'] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'zulu' | |
| java-version: ${{ matrix.java }} | |
| - uses: DeLaGuardo/[email protected] | |
| with: | |
| cli: 1.12.0.1530 | |
| - run: clojure -M:dev -m promesa.tests.main | |
| test-cljs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '24' | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22.15.0' | |
| - uses: DeLaGuardo/[email protected] | |
| with: | |
| cli: 1.12.0.1530 | |
| - run: | | |
| corepack enable | |
| corepack install | |
| yarn install | |
| yarn run test | |
| test-bb: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: DeLaGuardo/[email protected] | |
| with: | |
| bb: latest | |
| - run: | | |
| bb test:bb |