-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (31 loc) 路 803 Bytes
/
Copy pathci.yml
File metadata and controls
37 lines (31 loc) 路 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Description:
# - FZip build & test Check
name: CI
on:
workflow_dispatch:
push:
branches:
- main
- develop
paths-ignore:
- '**.md'
jobs:
fzip-check:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
# os: [windows-latest, ubuntu-latest, macos-latest, macos-15-intel]
runs-on: ${{ matrix.os }}
name: Setup MoonBit@${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Moonbit
uses: hustcer/setup-moonbit@main
- name: Check FZip Build & Test
run: |
moon version --all
moon check --target all
moon build --target all
moon test --target all