Skip to content

Commit

Permalink
TinyGo CI/CD build workflow pipeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Apr 16, 2024
1 parent e0c444b commit 34eb1db
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/tinygo_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: TinyGo Bluepill Build CI/CD

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: actions/setup-go@v4
with:
go-version: '1.21.2'

- uses: acifani/setup-tinygo@v2
with:
tinygo-version: '0.30.0'

- name: Install Qrepo
run: sh -c "$(curl -fsSL https://raw.githubusercontent.com/nthnn/Qrepo/master/support/install.sh)"

- name: Go version
run: go version

- name: Run test suites
run: qrepo run build

0 comments on commit 34eb1db

Please sign in to comment.