Skip to content

Build with MSRV (minimal supported Rust version) #93

Build with MSRV (minimal supported Rust version)

Build with MSRV (minimal supported Rust version) #93

Workflow file for this run

name: Build with MSRV (minimal supported Rust version)
on:
workflow_dispatch:
push:
paths:
- 'Cargo.lock'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: dtolnay/rust-toolchain@1.63
- name: Check jaq-core
working-directory: jaq-core
run: cargo check
- uses: dtolnay/rust-toolchain@1.65
- name: Check jaq
working-directory: jaq
run: cargo check
- name: Build
run: cargo build --verbose