Skip to content

Set MSRV to 1.81

Set MSRV to 1.81 #3

Workflow file for this run

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.81
- name: Test on MSRV
run: cargo +1.81 test