Restrict search results to valid entities #772
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: | |
- main | |
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 && format('origin/{0}', github.base_ref) || '_skip_' }} | |
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" |