19 lines
477 B
YAML
19 lines
477 B
YAML
name: "Test"
|
|
on:
|
|
pull_request:
|
|
merge_group:
|
|
# For bors
|
|
push:
|
|
branches:
|
|
- staging
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
|
|
- uses: cachix/install-nix-action@a809471b5c7c913aa67bec8f459a11a0decc3fce # v31
|
|
with:
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
extra_nix_config: |
|
|
experimental-features = nix-command flakes
|
|
- run: ./ci/test.sh
|