diff options
| author | seth <[email protected]> | 2024-06-04 12:00:21 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-06-04 08:00:21 -0400 |
| commit | 6219d0b7cfea271bffbc0ba11956373b55db17cf (patch) | |
| tree | 124d9dd1f01b31f111095d133ff769a04f717b94 /.github/workflows/ci.yaml | |
| parent | 1c3c62b0eff2e1db0c3a58729e0adc8d8c41e501 (diff) | |
fix: running without specific inputs passed (#1)v0.1.2
Diffstat (limited to '.github/workflows/ci.yaml')
| -rw-r--r-- | .github/workflows/ci.yaml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 458b81f..edbf017 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -7,10 +7,14 @@ on: jobs: test: - name: Run test + name: Run test (with `${{ matrix.sources }}`) runs-on: ubuntu-latest + strategy: + matrix: + sources: ["", "nixpkgs nixos-24.05"] + permissions: contents: write pull-requests: write |
