From 3577cf4e9ded1e20d6107a5967ba25705501ab99 Mon Sep 17 00:00:00 2001 From: mhoffm Date: Sun, 13 Jun 2021 14:01:06 +0200 Subject: [PATCH] add unittests github action --- .github/workflows/unittests.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/unittests.yaml diff --git a/.github/workflows/unittests.yaml b/.github/workflows/unittests.yaml new file mode 100644 index 0000000..057a171 --- /dev/null +++ b/.github/workflows/unittests.yaml @@ -0,0 +1,12 @@ +name: unittests +on: + push: + pull_request: + +jobs: + unittests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: nixbuild/nix-quick-install-action@v5 + - run: nix-shell --run 'tree-sitter test'