Skip to content

Commit

Permalink
ci: fix acceptance workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaHoffmann committed Apr 9, 2023
1 parent 3cf33b4 commit becebeb
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/acceptance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: nixbuild/nix-quick-install-action@v5
- run: nix-shell --run 'tree-sitter test'
- uses: cachix/[email protected]
with:
nix_path: nixpkgs=channel:nixos-unstable
- uses: dx-oss/nix-shell-action@v11
with:
file: shell.nix
script: tree-sitter test
acceptance:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: nixbuild/nix-quick-install-action@v5
- run: nix-shell --run 'tree-sitter parse --quiet --stat example/real_world_stuff/*/*'
- uses: cachix/[email protected]
with:
nix_path: nixpkgs=channel:nixos-unstable
- uses: dx-oss/nix-shell-action@v11
with:
file: shell.nix
script: tree-sitter parse --quiet --stat example/real_world_stuff/*/*
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ feature
* add dialects so we can have different queries in `nvim-treesitter`
* fix structure of comments in block bodies

fix:
* fix ci acceptance workflow

housekeeping:
* reformat using LSPs, ditch editorconfig

Expand Down

0 comments on commit becebeb

Please sign in to comment.