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:
|
2021-05-12 02:00:59 -07:00
|
|
|
- uses: actions/checkout@v2.3.4
|
2020-01-17 13:54:07 -08:00
|
|
|
# Because we use nightly features for building docs,
|
|
|
|
# using --all-features will fail without nightly toolchain.
|
2021-05-12 02:01:07 -07:00
|
|
|
- uses: actions-rs/toolchain@v1.0.7
|
2020-01-17 13:54:07 -08:00
|
|
|
with:
|
|
|
|
toolchain: nightly
|
|
|
|
override: true
|
2021-05-12 02:01:02 -07:00
|
|
|
- uses: actions-rs/cargo@v1.0.3
|
2019-12-09 14:12:58 -08:00
|
|
|
with:
|
2020-01-17 13:54:07 -08:00
|
|
|
command: test
|
|
|
|
args: --all-features
|