Update and simplify the CI.
This commit is contained in:
parent
a4cd49fd20
commit
26bd5c88eb
22
.github/workflows/ci.yaml
vendored
22
.github/workflows/ci.yaml
vendored
@ -6,38 +6,22 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: Build
|
|
||||||
run: |
|
|
||||||
cargo build --verbose --all-features
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: |
|
run: cargo test --verbose --all-features
|
||||||
cargo test --verbose --all-features
|
|
||||||
|
|
||||||
build-windows:
|
build-windows:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: Build
|
|
||||||
run: |
|
|
||||||
cargo build --verbose --all-features
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: |
|
run: cargo test --verbose --all-features
|
||||||
cargo test --verbose --all-features
|
|
||||||
|
|
||||||
build-macosx:
|
build-macosx:
|
||||||
runs-on: macOS-latest
|
runs-on: macOS-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: Rust requirements
|
|
||||||
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal
|
|
||||||
- name: Build
|
|
||||||
run: |
|
|
||||||
. ~/.cargo/env
|
|
||||||
cargo build --verbose --all-features
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: |
|
run: cargo test --verbose --all-features
|
||||||
. ~/.cargo/env
|
|
||||||
cargo test --verbose --all-features
|
|
||||||
|
|
||||||
quality:
|
quality:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
Loading…
Reference in New Issue
Block a user