-
Notifications
You must be signed in to change notification settings - Fork 8
43 lines (41 loc) · 1.28 KB
/
ci.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
name: ci
on: [push, pull_request]
jobs:
test:
name: test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- build: ubuntu
os: ubuntu-latest
rust: stable
- build: macos
os: macos-latest
rust: stable
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Install Rust (rustup)
run: rustup update ${{ matrix.rust }} --no-self-update && rustup default ${{ matrix.rust }}
- run: cd decnumber-sys && cargo test
- run: cd systest && cargo run
- run: cd dectest && cargo run -- -b decimal32 ../testdata/decSingle.decTest
- run: cd dectest && cargo run -- -b decimal64 ../testdata/decDouble.decTest
- run: cd dectest && cargo run -- -b decimal128 ../testdata/decQuad.decTest
- run: cd dectest && cargo run -- -b decimal ../testdata/testall.decTest
- run: cargo test
- run: cargo test --features=serde
- run: cargo test --features=num-traits
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Install Rust
run: rustup update stable && rustup default stable && rustup component add rustfmt
- run: cargo fmt -- --check