Skip to content

Commit

Permalink
run tests for multiple rustc versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
tabac committed Jul 22, 2020
1 parent e61f544 commit d0d4287
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,28 @@ on:

jobs:
test:
name: test (stable)
name: test
runs-on: ubuntu-latest
strategy:
matrix:
build:
- reference
- stable
- nightly
include:
- build: reference
rust: 1.40.0
- build: stable
rust: stable
- build: nightly
rust: nightly
steps:
- name: checkout
uses: actions/checkout@v2
- name: install
uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
- name: build
Expand Down

0 comments on commit d0d4287

Please sign in to comment.