Skip to content

Commit

Permalink
add Build examples step to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
syumai committed Apr 16, 2024
1 parent c5def28 commit 081d6e2
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,21 @@ jobs:
- name: Test
shell: bash
run: |
PATH=$PWD/misc/wasm:$PATH GOOS=js GOARCH=wasm go test ./...
PATH=$PWD/misc/wasm:$PATH GOOS=js GOARCH=wasm go test ./...
examples:
name: Build examples
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Golang
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}

- name: Build examples
shell: bash
run: make build-examples

0 comments on commit 081d6e2

Please sign in to comment.