Skip to content

Commit

Permalink
Check 1.61 MSRV on the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sdroege committed Dec 8, 2023
1 parent e19edf9 commit 879ec9a
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ jobs:
strategy:
matrix:
rust:
- 1.70.0
- stable
- beta
- nightly
Expand Down Expand Up @@ -91,6 +90,31 @@ jobs:
- name: Test async-std-runtime
run: cargo test --features async-std-runtime

test-msrv:
name: Test MSRV
runs-on: ubuntu-latest

strategy:
matrix:
rust:
- 1.61.0

steps:
- name: Checkout sources
uses: actions/checkout@v2

- name: Install toolchain
uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{ matrix.rust }}

- name: Install dependencies
run: |
sudo apt-get install libssl-dev
- name: Check
run: cargo check

autobahn:
name: Autobahn tests
runs-on: ubuntu-latest
Expand Down

0 comments on commit 879ec9a

Please sign in to comment.