Skip to content

Commit

Permalink
ci: remove test step from nix-ci (#15491)
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorwhitney authored Dec 18, 2024
1 parent 6e8bd9d commit e1329fa
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/nix-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ on:
pull_request:
paths:
- "flake.nix"
- "flake.lock"
- "go.mod"
- "nix/**"
- .github/workflows/nix-ci.yaml
jobs:
lint:
runs-on: ubuntu-latest
Expand All @@ -25,7 +27,16 @@ jobs:
- uses: cachix/install-nix-action@v30
with:
nix_path: nixpkgs=channel:nixos-unstable
- uses: dorny/paths-filter@v3
id: nix-changes
with:
filters: |
nix:
- 'nix/**'
- 'flake.nix'
- 'flake.lock'
- run: nix run --print-build-logs .#test
if: steps.nix-changes.outputs.nix == 'true'
packages:
runs-on: ubuntu-latest
steps:
Expand Down
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e1329fa

Please sign in to comment.