Skip to content

Commit

Permalink
Add MSRV 1.75 Github workflow check
Browse files Browse the repository at this point in the history
  • Loading branch information
jbesraa authored and plebhash committed Jul 9, 2024
1 parent e9d3a9f commit 2383633
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/rust-msrv.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev

name: MSRV 1.75 Check

jobs:

build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust:
- 1.75.0 # MSRV

steps:
- uses: actions/checkout@v2
- uses: Swatinem/[email protected]
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true
- name: Build Benches
run: cargo build --manifest-path=benches/Cargo.toml
- name: Build Protocols
run: cargo build --manifest-path=protocols/Cargo.toml
- name: Build Roles
run: cargo build --manifest-path=roles/Cargo.toml
- name: Build Utils
run: cargo build --manifest-path=utils/Cargo.toml

0 comments on commit 2383633

Please sign in to comment.