Skip to content

Commit

Permalink
build: add GH action workflow job for smoketest
Browse files Browse the repository at this point in the history
Signed-off-by: deadprogram <ron@hybridgroup.com>
  • Loading branch information
deadprogram committed Dec 19, 2024
1 parent b0793fb commit 57ca4e0
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build

on:
pull_request:
push:
branches:
- main
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
container: ghcr.io/tinygo-org/tinygo-dev:latest
steps:
- name: Work around CVE-2022-24765
# We're not on a multi-user machine, so this is safe.
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Checkout
uses: actions/checkout@v4
- name: TinyGo version check
run: tinygo version
- name: Run build and smoke tests
run: make smoke-test

0 comments on commit 57ca4e0

Please # to comment.