Skip to content

Commit

Permalink
github-workflows: Improve GitHub Workflow tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
KokaKiwi committed Feb 10, 2020
1 parent 3b8a77d commit e8e2506
Showing 1 changed file with 27 additions and 9 deletions.
36 changes: 27 additions & 9 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,32 @@
name: Rust

name: Test hex
on: [push, pull_request]

env:
RUST_BACKTRACE: '1'
RUSTFLAGS: -D warnings

jobs:
build:
runs-on: ubuntu-latest
test:
runs-on: ${{ matrix.os }}
strategy:
# We want the tests to run on all configurations, even if jobs (like on nightly), fail.
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
rust: [stable, beta, nightly]

steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- uses: actions/checkout@v2
- uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{ matrix.rust }}
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Run tests [no-default-features]
run: cargo test --verbose --no-default-features
- name: Run tests [serde]
run: cargo test --verbose --features serde
- name: Validate benches still work
run: cargo bench --all -- --test

0 comments on commit e8e2506

Please sign in to comment.