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
Changes from 1 commit
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
Prev Previous commit
Tolerate rust 1.43.0
This is to ease the maintainance of the reference implementation in the
JSONPath comparison project.
  • Loading branch information
glyn committed Jan 5, 2021
commit 010790c74bf76e59e0dea1df344a7b80a34be34c
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