Don't run on all pushes, only on PRs and after landing on main #432
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: | |
permissions: read-all | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
env: | |
USE_BAZEL_VERSION: ${{ matrix.bazel-version }} | |
strategy: | |
fail-fast: false | |
matrix: | |
bazel-version: ["5.x", "6.x", "latest"] | |
os: ["ubuntu-latest", "macos-latest"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v3 | |
with: | |
path: "~/.cache/bazelisk\n~/.cache/bazel\n" | |
key: bazel-${{ matrix.bazel-version }}-cache-${{ github.run_id }} | |
restore-keys: bazel-${{ matrix.bazel-version }}-cache- | |
- run: sed -i.bak '/remove if Bazel version < 6/d' tests/test.cc && rm tests/test.cc.bak | |
if: ${{ startsWith(matrix.bazel-version, '5') }} | |
- run: bazel test //... | |
lint: | |
runs-on: ubuntu-latest | |
permissions: | |
checks: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: trunk-io/trunk-action@v1 |