tentative changes to include packet capture printing #41
Workflow file for this run
This file contains hidden or 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: Build | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/tinygo-org/tinygo-dev | |
| options: --user root | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install QEMU | |
| run: apt-get update && apt-get install -y qemu-system-misc | |
| - name: TinyGo version check | |
| run: tinygo version | |
| - name: Enforce Go Formatted Code | |
| run: make fmt-check | |
| - name: Run unit tests | |
| run: | | |
| go env -w GOFLAGS=-buildvcs=false | |
| make unit-test | |
| - name: Smoke test examples | |
| run: | | |
| go env -w GOFLAGS=-buildvcs=false | |
| make smoke-test |