21 lines
466 B
YAML
21 lines
466 B
YAML
name: CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
test_nightly:
|
|
name: test on nightly
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.3.4
|
|
# Because we use nightly features for building docs,
|
|
# using --all-features will fail without nightly toolchain.
|
|
- uses: actions-rs/toolchain@v1.0.7
|
|
with:
|
|
toolchain: nightly
|
|
override: true
|
|
- uses: actions-rs/cargo@v1.0.3
|
|
with:
|
|
command: test
|
|
args: --all-features
|