Skip to content

Merge branch 'main' of github.com:01mf02/jaq #88

Merge branch 'main' of github.com:01mf02/jaq

Merge branch 'main' of github.com:01mf02/jaq #88

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@v2
- 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