2019-12-09 14:12:58 -08:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
2020-01-17 13:54:07 -08:00
|
|
|
test_nightly:
|
|
|
|
name: test on nightly
|
2019-12-09 14:12:58 -08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
2020-01-17 13:54:07 -08:00
|
|
|
# Because we use nightly features for building docs,
|
|
|
|
# using --all-features will fail without nightly toolchain.
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: nightly
|
|
|
|
override: true
|
|
|
|
- uses: actions-rs/cargo@v1
|
2019-12-09 14:12:58 -08:00
|
|
|
with:
|
2020-01-17 13:54:07 -08:00
|
|
|
command: test
|
|
|
|
args: --all-features
|