add names to github test workflow
This commit is contained in:
parent
bda5fee5fe
commit
24c9a07dd0
1 changed files with 24 additions and 22 deletions
10
.github/workflows/test.yml
vendored
10
.github/workflows/test.yml
vendored
|
@ -7,12 +7,15 @@ jobs:
|
||||||
tests:
|
tests:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- name: Checkout repository
|
||||||
- uses: DeterminateSystems/nix-installer-action@main
|
uses: actions/checkout@v3
|
||||||
|
- name: Install Nix
|
||||||
|
uses: DeterminateSystems/nix-installer-action@main
|
||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
extra-conf: "system-features = nixos-test benchmark big-parallel kvm"
|
extra-conf: "system-features = nixos-test benchmark big-parallel kvm"
|
||||||
- uses: cachix/cachix-action@v12
|
- name: Setup Caching
|
||||||
|
uses: cachix/cachix-action@v12
|
||||||
with:
|
with:
|
||||||
name: selfhostblocks
|
name: selfhostblocks
|
||||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
|
@ -21,7 +24,6 @@ jobs:
|
||||||
nix run github:Mic92/nix-fast-build -- \
|
nix run github:Mic92/nix-fast-build -- \
|
||||||
--skip-cached --no-nom \
|
--skip-cached --no-nom \
|
||||||
--flake ".#checks.$(nix eval --raw --impure --expr builtins.currentSystem)"
|
--flake ".#checks.$(nix eval --raw --impure --expr builtins.currentSystem)"
|
||||||
|
|
||||||
- name: Test building docs
|
- name: Test building docs
|
||||||
run: |
|
run: |
|
||||||
nix \
|
nix \
|
||||||
|
|
Loading…
Reference in a new issue