Skip to content

Commit

Permalink
Update ci_check.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dimkauzh committed Oct 20, 2023
1 parent b3828a9 commit 148e295
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/ci_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:

build:
Build Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -24,5 +24,15 @@ jobs:
- name: Test1
run: GOOS=js GOARCH=wasm go build -o build/main.wasm tests/test1/test1.go

Build Example:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'

- name: Example
run: GOOS=js GOARCH=wasm go build -o build/main.wasm example/example.go

0 comments on commit 148e295

Please sign in to comment.