Skip to content

Commit

Permalink
fix: every step must define a uses or run key
Browse files Browse the repository at this point in the history
  • Loading branch information
hadilq committed Nov 8, 2023
1 parent fe1a795 commit 4cd9710
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ on:

jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-23.05

- name: Build and check
- run: nix-build .github/workflow/check.nix
- name: checkout
uses: actions/checkout@v2
- name: set up nixpkgs
uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-23.05
- name: Build and check
run: nix-build .github/workflows/check.nix

0 comments on commit 4cd9710

Please sign in to comment.