Skip to content

Commit

Permalink
ci: allow nightly runs to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Krotov authored and link2xt committed Jul 22, 2020
1 parent 71c7b30 commit 6594fdf
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,22 @@ jobs:
build_and_test:
name: Build and test
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [nightly, 1.45.0]
rust: [1.45.0]
experimental: [false]
include:
- os: ubuntu-latest
rust: nightly
experimental: true
- os: windows-latest
rust: nightly
experimental: true
- os: macOS-latest
rust: nightly
experimental: true

steps:
- uses: actions/checkout@master
Expand Down

0 comments on commit 6594fdf

Please sign in to comment.