Skip to content

CI & other tools

CI & other tools #4

Workflow file for this run

name: CI
on:
push:
branches:
# PRs can only use caches from their target branch. We therefore need to
# make sure we run on 'master' too.
- master
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pre-commit:
uses: ./.github/workflows/pre-commit.yaml
build-and-test:
needs: pre-commit
uses: ./.github/workflows/build-and-test.yaml