Some fixes in support of Pulse errors #249
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-ignore: | |
- _** | |
pull_request: | |
workflow_dispatch: | |
merge_group: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
name: build | |
uses: ./.github/workflows/build-ci.yml | |
tests: | |
name: tests | |
needs: build | |
uses: ./.github/workflows/tests.yml | |
# Disabled as it takes too long without the magic nix cache. | |
# nix-build: | |
# name: nix | |
# uses: ./.github/workflows/nix.yml | |
# Branch protection points here | |
ciok: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
- tests | |
# - nix-build | |
steps: | |
- run: exit 0 |