Skip to content

Check MSRV of librarium #88

Check MSRV of librarium

Check MSRV of librarium #88

Workflow file for this run

on:
push:
branches:
- master
pull_request:
branches:
- master
schedule: [cron: "40 1 * * *"]
name: Check MSRV of librarium
jobs:
build-test-cpio:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
toolchain:
# msrv of cpio
- 1.72.1
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Populate cache
uses: ./.github/workflows/cache
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- run: cargo check --locked -p librarium
build-test-librarium-cli:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
toolchain:
# msrv of librarium-cli
- 1.77
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Populate cache
uses: ./.github/workflows/cache
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- run: cargo check --locked -p librarium-cli