-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (36 loc) · 996 Bytes
/
build.yml
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
38
39
40
name: Lint, Build and Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
lint-build-test:
runs-on: ${{ matrix.runner }}
strategy:
matrix:
runner: [ubuntu-latest, windows-latest, macos-latest]
include:
- runner: ubuntu-latest
platform: linux
- runner: windows-latest
platform: windows
- runner: macos-latest
platform: macos
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: '20.11.0'
- name: Check
run: cargo run --package tool-dev -- check
- name: Clippy
run: cargo run --package tool-dev -- clippy
- name: Format
run: cargo run --package tool-dev -- fmt
- name: Build
run: cargo run --package tool-dev -- build ${{ matrix.platform }}
- name: Test
run: cargo run --package tool-dev -- test ${{ matrix.platform }}