Skip to content

Document and test MSRV of 1.56 #6

Document and test MSRV of 1.56

Document and test MSRV of 1.56 #6

Workflow file for this run

name: CI
on:
pull_request:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run Cargo test
run: cargo test
msrv-test:
runs-on: ubuntu-latest
steps:
- name: Checkout respository
uses: actions/checkout@v4
- name: Install cargo-minimal-versions
uses: taiki-e/install-action@cargo-minimal-versions
- name: Run Cargo test on MSRV
run: cargo +1.56 minimal-versions test
clippy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run Cargo clippy
run: cargo clippy -- --deny warnings
no-alloc:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install no-std/no-alloc target
run: rustup target add x86_64-unknown-none
- name: Check build on no-std/no-alloc target
run: cargo build --target x86_64-unknown-none