mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-07-26 10:38:41 +00:00
1e4545828f
Signed-off-by: deadprogram <ron@hybridgroup.com>
29 lines
701 B
YAML
29 lines
701 B
YAML
name: Build
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- dev
|
|
- release
|
|
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@v3
|
|
- name: TinyGo version check
|
|
run: tinygo version
|
|
- name: Enforce Go Formatted Code
|
|
run: make fmt-check
|
|
- name: Run unit tests
|
|
run: make unit-test
|
|
- name: Run build and smoke tests
|
|
run: make smoke-test
|