Skip to content

Commit

Permalink
Add MSRV check
Browse files Browse the repository at this point in the history
  • Loading branch information
zakarumych committed Dec 20, 2024
1 parent 8f60deb commit a7aed3c
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test MSRV

on:
pull_request:
types: [opened, reopened, edited]
push:
branches: [ "main" ]
paths:
- ".github/workflows/msrv.yml"
- "proc/**"
- "examples/**"
- "src/**"
- "Cargo.toml"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install MSRV
run: rustup install 1.80
- name: Test on MSRV
run: cargo +1.80 test

0 comments on commit a7aed3c

Please sign in to comment.