Make CI test on multiple rust versions (#159)

Use 1.41.0 and nightly
This commit is contained in:
Pelle Johnsen 2020-08-27 16:30:04 +02:00 committed by GitHub
parent 64bb2104cf
commit e41dc6958c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,12 +5,15 @@ jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
rust: [1.41.0, nightly]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.41.0
toolchain: ${{ matrix.rust }}
override: true
- uses: actions-rs/cargo@v1
name: Default test