Skip to content

Commit 996275a

Browse files
committed
build: add GH action workflow job for smoketest
Signed-off-by: deadprogram <[email protected]>
1 parent d16f088 commit 996275a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/build.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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: Checkout
16+
uses: actions/checkout@v4
17+
- name: TinyGo version check
18+
run: tinygo version
19+
- name: Run build and smoke tests
20+
run: make smoke-test

0 commit comments

Comments
 (0)