-
Notifications
You must be signed in to change notification settings - Fork 17
60 lines (57 loc) · 1.53 KB
/
main.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: CI
on:
push:
branches:
- main
tags: ['[0-9]*']
pull_request:
branches:
- main
jobs:
test:
name: Run tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Install Rust
run: |
rustup update stable --no-self-update
rustup default stable
shell: bash
- name: Run all tests
run: cargo test --all
check:
name: Check feature combinations
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Install Rust
run: |
rustup update stable --no-self-update
rustup default stable
shell: bash
- name: Build without default features
run: cargo check --no-default-features
- name: Build the `wat` feature
run: cargo check --no-default-features --features wat
- name: Build the `wit` feature
run: cargo check --no-default-features --features wit
- name: Build the `registry` feature
run: cargo check --no-default-features --features registry
- name: Build all features
run: cargo check --all-features
rustfmt:
name: Format source code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust
run: rustup update stable && rustup default stable && rustup component add rustfmt
- name: Run `cargo fmt`
run: cargo fmt -- --check