Skip to content

Commit

Permalink
Fix YAML syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
dhardy committed Dec 8, 2020
1 parent e9d6295 commit cc5726a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -20,7 +20,8 @@ jobs:
override: true
run: cargo install cargo-deadlinks
- name: doc (rand)
env: RUSTDOCFLAGS: --cfg doc_cfg
env:
RUSTDOCFLAGS: --cfg doc_cfg
# --all builds all crates, but with default features for other crates (okay in this case)
run: cargo deadlinks --ignore-fragments -- --all --features nightly,serde1,getrandom,small_rng

Expand All @@ -47,10 +48,10 @@ jobs:
toolchain: ${{ matrix.toolchain }}
override: true
- name: Maybe minimal
if ${{ matrix.minimal }}
if: ${{ matrix.minimal }}
run: cargo generate-lockfile -Z minimal-versions
- name: Maybe nightly
if ${{ matrix.toolchain == 'nightly' }}
if: ${{ matrix.toolchain == 'nightly' }}
run: |
cargo test --tests --features=nightly
cargo test --all-features
Expand Down

0 comments on commit cc5726a

Please sign in to comment.