Skip to content

Commit

Permalink
ci.yml: Add a MSRV job
Browse files Browse the repository at this point in the history
Signed-off-by: Tomás González <[email protected]>
  • Loading branch information
tgonzalezorlandoarm committed Nov 21, 2023
1 parent ce9ab8b commit cf2b4e2
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,24 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install latest Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
rustflags: ""
- name: Execute all tests
run: ./tests/ci.sh

build-msrv:
name: MSRV - Build and check formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rust MSRV
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.66.0
rustflags: ""
- name: Execute all tests
run: ./tests/ci.sh

Expand Down

0 comments on commit cf2b4e2

Please sign in to comment.