ci: simplify nightly

master
Robert Jördens 2021-02-04 17:01:18 +01:00
parent 0343e5d8ab
commit 47d8a74524
2 changed files with 2 additions and 6 deletions

2
.github/bors.toml vendored
View File

@ -3,5 +3,5 @@ delete_merged_branches = true
status = [
"style",
"test (stable)",
"compile (stable, false)",
"compile (stable)",
]

View File

@ -35,22 +35,18 @@ jobs:
compile:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.optional }}
continue-on-error: ${{ matrix.toolchain == 'nightly' }}
strategy:
matrix:
toolchain: [stable]
features: ['']
optional: [false]
include:
- toolchain: beta
features: ''
optional: false
- toolchain: stable
features: pounder_v1_1
optional: false
- toolchain: nightly
features: nightly
optional: true
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1