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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
- uses: cachix/install-nix-action@d1ca217b388ee87b2507a9a93bf01368bde7cec2 # v31
|
|
with:
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
extra_nix_config: |
|
|
experimental-features = nix-command flakes
|
|
- run: ./ci/test.sh
|