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 b0793fb commit 57ca4e0Copy full SHA for 57ca4e0
.github/workflows/build.yml
@@ -0,0 +1,23 @@
1
+name: Build
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - main
8
+ workflow_dispatch:
9
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ container: ghcr.io/tinygo-org/tinygo-dev:latest
14
+ steps:
15
+ - name: Work around CVE-2022-24765
16
+ # We're not on a multi-user machine, so this is safe.
17
+ run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
18
+ - name: Checkout
19
+ uses: actions/checkout@v4
20
+ - name: TinyGo version check
21
+ run: tinygo version
22
+ - name: Run build and smoke tests
23
+ run: make smoke-test
0 commit comments