Skip to content

Commit

Permalink
ci: add tinygo test
Browse files Browse the repository at this point in the history
  • Loading branch information
pelletier committed Sep 9, 2022
1 parent 9428417 commit 48ca06a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/experimental.yml
Original file line number Diff line number Diff line change
@@ -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 ./...

0 comments on commit 48ca06a

Please sign in to comment.