-
Notifications
You must be signed in to change notification settings - Fork 49
68 lines (65 loc) · 1.91 KB
/
test.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
61
62
63
64
65
66
67
68
name: CI tests
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
build: [stable, nightly, 1.50.0, macos, windows, mingw]
include:
- build: stable
os: ubuntu-latest
rust: stable
- build: nightly
os: ubuntu-latest
rust: nightly
- build: 1.50.0
os: ubuntu-latest
rust: 1.50.0
- build: macos
os: macos-latest
rust: stable
- build: windows
os: windows-latest
rust: stable
- build: mingw
os: windows-latest
rust: stable-x86_64-gnu
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
override: true
toolchain: ${{ matrix.rust }}
- run: cargo test --manifest-path ./miniz_oxide/Cargo.toml
- run: cargo test --manifest-path ./miniz_oxide/Cargo.toml --features simd
- run: cargo build --manifest-path ./miniz_oxide/Cargo.toml --no-default-features
- run: cargo test
# rustfmt:
# name: Rustfmt
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions-rs/toolchain@v1
# with:
# profile: minimal
# components: rustfmt # seems to not work?
# toolchain: stable
# - run: rustup toolchain install stable --component rustfmt
# - run: cargo fmt -p miniz_oxide -- --check
wasm:
name: WebAssembly
runs-on: ubuntu-latest
strategy:
matrix:
target: [wasm32-unknown-unknown, wasm32-wasi]
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: ${{ matrix.target }}
- run: cargo build -p miniz_oxide --target ${{ matrix.target }}