Skip to content

Merge pull request #19 from nhawkes/master #22

Merge pull request #19 from nhawkes/master

Merge pull request #19 from nhawkes/master #22

Workflow file for this run

name: Build and Test
on:
push:
branches:
- '**'
jobs:
test:
name: Build and Test (stable)
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features --all
test-nightly:
name: Build and Test (nightly)
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features --all