Skip to content

Commit becebeb

Browse files
committed
ci: fix acceptance workflow
1 parent 3cf33b4 commit becebeb

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

.github/workflows/acceptance.yaml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,21 @@ jobs:
66
runs-on: ubuntu-latest
77
steps:
88
- uses: actions/checkout@v2
9-
- uses: nixbuild/nix-quick-install-action@v5
10-
- run: nix-shell --run 'tree-sitter test'
9+
- uses: cachix/install-nix-action@v14.1
10+
with:
11+
nix_path: nixpkgs=channel:nixos-unstable
12+
- uses: dx-oss/nix-shell-action@v11
13+
with:
14+
file: shell.nix
15+
script: tree-sitter test
1116
acceptance:
1217
runs-on: ubuntu-latest
1318
steps:
1419
- uses: actions/checkout@v2
15-
- uses: nixbuild/nix-quick-install-action@v5
16-
- run: nix-shell --run 'tree-sitter parse --quiet --stat example/real_world_stuff/*/*'
20+
- uses: cachix/install-nix-action@v14.1
21+
with:
22+
nix_path: nixpkgs=channel:nixos-unstable
23+
- uses: dx-oss/nix-shell-action@v11
24+
with:
25+
file: shell.nix
26+
script: tree-sitter parse --quiet --stat example/real_world_stuff/*/*

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ feature
66
* add dialects so we can have different queries in `nvim-treesitter`
77
* fix structure of comments in block bodies
88

9+
fix:
10+
* fix ci acceptance workflow
11+
912
housekeeping:
1013
* reformat using LSPs, ditch editorconfig
1114

0 commit comments

Comments
 (0)