From 9160d2f4cbb7421e66aa58920c9e0561ecec4543 Mon Sep 17 00:00:00 2001 From: mhoffm Date: Wed, 23 Jun 2021 00:52:32 +0200 Subject: [PATCH] add acceptance test action --- .gitattributes | 0 .github/workflows/acceptance.yaml | 11 +++++++++++ 2 files changed, 11 insertions(+) delete mode 100644 .gitattributes create mode 100644 .github/workflows/acceptance.yaml diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index e69de29..0000000 diff --git a/.github/workflows/acceptance.yaml b/.github/workflows/acceptance.yaml new file mode 100644 index 0000000..4e9451c --- /dev/null +++ b/.github/workflows/acceptance.yaml @@ -0,0 +1,11 @@ +name: acceptance +on: + push: + +jobs: + unittests: + 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/*/*'