Testing only #722
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: CI | ||
on: | ||
push: | ||
branches: | ||
- testing-only | ||
pull_request: | ||
branches: | ||
- main | ||
concurrency: | ||
group: ci-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
ci-matrix: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
- uses: cachix/install-nix-action@v27 | ||
- name: sbt ci ${{ github.ref }} | ||
env: | ||
README_BASE_REF: ${{ github.base_ref && join(['origin/', github.base_ref]) || '_skip_' }} | ||
Check failure on line 26 in .github/workflows/ci.yml GitHub Actions / CIInvalid workflow file
|
||
run: nix develop .#ci --command sbt ci | ||
ci: | ||
runs-on: ubuntu-latest | ||
needs: [ci-matrix] | ||
steps: | ||
- name: Aggregate of lint, and all tests | ||
run: echo "ci passed" |