Skip to content

fix(deps): update patch updates (#241) #596

fix(deps): update patch updates (#241)

fix(deps): update patch updates (#241) #596

Workflow file for this run

name: RustSAT Tools
on:
push:
branches: [ "main", "next-major" ]
pull_request:
branches: [ "main", "next-major" ]
env:
CARGO_TERM_COLOR: always
jobs:
build-test:
name: Build and test
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
shared-key: "build-test"
- name: Install latest nextest release
uses: taiki-e/install-action@nextest
- name: Cargo build
run: cargo build -p rustsat-tools --verbose
env:
CMAKE_BUILD_PARALLEL_LEVEL: ${{ fromJSON('["", "4"]')[matrix.os == 'macos-latest'] }}
- name: Run tests
run: cargo nextest run --profile ci -p rustsat-tools --verbose
env:
CMAKE_BUILD_PARALLEL_LEVEL: ${{ fromJSON('["", "4"]')[matrix.os == 'macos-latest'] }}