Skip to content

Commit

Permalink
setup ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Young-Flash committed Oct 30, 2024
1 parent b573036 commit a50536b
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- name: ubuntu-latest
Expand Down Expand Up @@ -36,6 +37,10 @@ jobs:
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser; irm https://cli.moonbitlang.com/install/powershell.ps1 | iex
"C:\Users\runneradmin\.moon\bin" | Out-File -FilePath $env:GITHUB_PATH -Append
- name: Setup MSVC
if: ${{ matrix.os == 'windows-latest' }}
uses: ilammy/msvc-dev-cmd@v1

- name: moon version
run: |
moon version --all
Expand All @@ -51,13 +56,10 @@ jobs:
- name: moon test
run: |
# fs don't support native backend for now
moon test --target wasm
moon test --target wasm-gc
moon test --target js
moon test --target wasm --release
moon test --target wasm-gc --release
moon test --target js --release
moon test --target all --serial --release
moon test --target all --serial
moon test --target native --release
moon test --target native

- name: format diff
run: |
Expand Down

0 comments on commit a50536b

Please sign in to comment.