Remove unused env var
This commit is contained in:
parent
6eaa23c963
commit
e02976750d
1
.github/workflows/build.yaml
vendored
1
.github/workflows/build.yaml
vendored
|
@ -9,7 +9,6 @@ jobs:
|
|||
runs-on: ${{ matrix.systems.runner }}
|
||||
env:
|
||||
CLOSURE_FILE: magic-nix-cache.closure.xz
|
||||
CLOSURE_KEY: magic-nix-cache-${{ matrix.systems.runner }}-${{ github.sha }}
|
||||
strategy:
|
||||
matrix:
|
||||
systems:
|
||||
|
|
5
.github/workflows/check-and-test.yaml
vendored
5
.github/workflows/check-and-test.yaml
vendored
|
@ -7,6 +7,7 @@ on:
|
|||
|
||||
jobs:
|
||||
checks:
|
||||
name: Nix and Rust checks
|
||||
runs-on: ubuntu-22.04
|
||||
permissions:
|
||||
contents: read
|
||||
|
@ -30,11 +31,13 @@ jobs:
|
|||
run: nix develop --command cargo clippy
|
||||
|
||||
build:
|
||||
name: Build artifacts
|
||||
needs: checks
|
||||
uses: ./.github/workflows/build.yaml
|
||||
secrets: inherit
|
||||
|
||||
test-magic-nix-cache-action:
|
||||
action-integration-test:
|
||||
name: Integration test for magic-nix-cache-action
|
||||
runs-on: ${{ matrix.systems.runner }}
|
||||
needs: build
|
||||
env:
|
||||
|
|
Loading…
Reference in a new issue