diff options
author | Chuck Lantz <clantz@microsoft.com> | 2022-11-01 20:02:02 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-01 20:02:02 +0300 |
commit | 0752a52b0c8ac76448666822938dce8f4d55bb69 (patch) | |
tree | 39abf9124899027643a68e5d33afc78f92ecedd9 /.github | |
parent | 748be9320c99cbf6e6a2885d3b5dcc39e7ad3b78 (diff) |
Nix feature (#228)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/test-all.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/test-pr.yaml | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/test-all.yaml b/.github/workflows/test-all.yaml index 6d2ba07..28bf5e7 100644 --- a/.github/workflows/test-all.yaml +++ b/.github/workflows/test-all.yaml @@ -38,6 +38,7 @@ jobs: "rust", "sshd", "terraform", + "nix", ] baseImage: [ @@ -88,6 +89,7 @@ jobs: "rust", "sshd", "terraform", + "nix", ] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/test-pr.yaml b/.github/workflows/test-pr.yaml index 8d21b03..f7ad2f0 100644 --- a/.github/workflows/test-pr.yaml +++ b/.github/workflows/test-pr.yaml @@ -38,6 +38,7 @@ jobs: rust: ./**/rust/** sshd: ./**/sshd/** terraform: ./**/terraform/** + nix: ./**/nix/** test: needs: [detect-changes] |