Linux #1115
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux | |
on: | |
pull_request: | |
push: | |
branches: | |
- dev | |
- release | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: ghcr.io/tinygo-org/tinygo-dev | |
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: Run unit tests | |
run: go test | |
- name: Run TinyGo smoke tests | |
run: make smoketest-tinygo | |
- name: Run Linux smoke tests | |
run: make smoketest-linux | |
- name: "Run Windows cross-compiled smoke tests" | |
run: make smoketest-windows |