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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
|
|
- uses: cachix/install-nix-action@4e002c8ec80594ecd40e759629461e26c8abed15 # v31
|
|
with:
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
extra_nix_config: |
|
|
experimental-features = nix-command flakes
|
|
- run: ./ci/test.sh
|