summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorStephan Dilly <dilly.stephan@gmail.com>2020-08-28 10:52:24 +0200
committerGitHub <noreply@github.com>2020-08-28 10:52:24 +0200
commit2401293b662533c8595efea1f3827e05ab161402 (patch)
treecd00089e09d6cabdf65d1913e43290924252ef79 /.github
parent53f333f4cad3817d92913ae1fe09d0d1471b13b4 (diff)
Rust1.46 and nightly ci (#246)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index aa168fe7..5fcf1e67 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -14,8 +14,10 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
+ rust: [nightly, stable]
runs-on: ${{ matrix.os }}
+ continue-on-error: ${{ matrix.rust == 'nightly' }}
steps:
- uses: actions/checkout@v2
@@ -23,7 +25,8 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
- toolchain: stable
+ toolchain: ${{ matrix.rust }}
+ default: true
profile: minimal
components: clippy