github actions: nightly only

This commit is contained in:
dignifiedquire
2019-11-12 16:08:44 +01:00
parent 2fc1d21959
commit e539bddc3b

View File

@@ -14,7 +14,7 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, windows-latest, macOS-latest] os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [nightly, beta, stable] rust: [nightly]
steps: steps:
- uses: actions/checkout@master - uses: actions/checkout@master
@@ -27,6 +27,7 @@ jobs:
- name: check - name: check
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
if: matrix.rust == 'nightly'
with: with:
command: check command: check
args: --all --bins --examples --tests args: --all --bins --examples --tests