From 48ca06a23cbe9e5fd315e2bbd3257b115b443317 Mon Sep 17 00:00:00 2001 From: Thomas Pelletier Date: Fri, 9 Sep 2022 19:27:49 -0400 Subject: [PATCH] ci: add tinygo test --- .github/workflows/experimental.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/experimental.yml diff --git a/.github/workflows/experimental.yml b/.github/workflows/experimental.yml new file mode 100644 index 0000000..017a0e8 --- /dev/null +++ b/.github/workflows/experimental.yml @@ -0,0 +1,21 @@ +# Those tests are allowed to fail +name: experimental +on: + push: + branches: + - v2 + pull_request: + branches: + - v2 + +jobs: + tinygo: + name: tinygo 0.25.0 + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: tinygo test ./... + run: | + docker run --rm -v $(pwd):/src -w /src tinygo/tinygo:0.25.0 tinygo test ./...