Skip to content

Bump version to 2.1. #99

Bump version to 2.1.

Bump version to 2.1. #99

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: cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: cargo-
- uses: dtolnay/[email protected]
- name: Check jaq-core
working-directory: jaq-core
run: cargo check
- uses: dtolnay/[email protected]
- name: Check jaq
working-directory: jaq
run: cargo check
- name: Build
run: cargo build --verbose