Add support for Rust 1.43 (#13)
This commit is contained in:
parent
d95660a260
commit
b1a0b0f8a5
7 changed files with 54 additions and 20 deletions
29
.github/workflows/tests.yml
vendored
29
.github/workflows/tests.yml
vendored
|
|
@ -3,11 +3,30 @@ name: Tests
|
|||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
build-latest:
|
||||
name: Test on Latest
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Test
|
||||
run: make test
|
||||
- uses: actions/checkout@v1
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
profile: minimal
|
||||
override: true
|
||||
- name: Test
|
||||
run: make test
|
||||
|
||||
build-stable:
|
||||
name: Test on 1.43.0
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: 1.43.0
|
||||
profile: minimal
|
||||
override: true
|
||||
- name: Test
|
||||
run: make test
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue