Skip to content
This repository was archived by the owner on Feb 22, 2024. It is now read-only.

Tolerate rust 1.43.0 #25

Merged
merged 2 commits into from
Jan 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/quickstart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ jobs:
check:
name: Check
runs-on: ubuntu-latest
strategy:
matrix:
toolchain: [ stable, "1.43.0" ]
steps:
- name: Checkout sources
uses: actions/checkout@v2
Expand All @@ -22,7 +25,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
toolchain: ${{ matrix.toolchain }}
override: true

- name: Run cargo check
Expand All @@ -33,6 +36,9 @@ jobs:
test:
name: Test Suite
runs-on: ubuntu-latest
strategy:
matrix:
toolchain: [ stable, "1.43.0" ]
steps:
- name: Checkout sources
uses: actions/checkout@v2
Expand All @@ -43,7 +49,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
toolchain: ${{ matrix.toolchain }}
override: true

- name: Run cargo test
Expand All @@ -64,6 +70,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
# lint using only the latest stable
toolchain: stable
override: true
components: rustfmt, clippy
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ pest = "2.1.3"
pest_derive = "2.1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.57"
slyce = "0.3.0"
slyce = "0.3.1"