We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d292a7 commit a939a95Copy full SHA for a939a95
.github/build.yml
@@ -0,0 +1,23 @@
1
+name: Build
2
+on:
3
+ pull_request:
4
+ push:
5
+ branches:
6
+ - dev
7
+ - release
8
+
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ container: tinygo/tinygo-dev
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v2
16
+ - name: TinyGo version check
17
+ run: tinygo version
18
+ - name: Enforce Go Formatted Code
19
+ run: make fmt-check
20
+ - name: Run unit tests
21
+ run: make unit-test
22
+ - name: Run build and smoke tests
23
+ run: make smoke-test
0 commit comments