Skip to content

build(deps): bump install-pinned/mypy from cec260456eec5126750b72b8f0a6e6011eb85223 to 8fd8c50eff0144780246d326dc2159289f090e33 #228

build(deps): bump install-pinned/mypy from cec260456eec5126750b72b8f0a6e6011eb85223 to 8fd8c50eff0144780246d326dc2159289f090e33

build(deps): bump install-pinned/mypy from cec260456eec5126750b72b8f0a6e6011eb85223 to 8fd8c50eff0144780246d326dc2159289f090e33 #228

Workflow file for this run

name: Minisat
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
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: Cargo build
run: cargo build -p rustsat-minisat --verbose
env:
CMAKE_BUILD_PARALLEL_LEVEL: ${{ fromJSON('["", "4"]')[matrix.os == 'macos-latest'] }}
- name: Cargo test
run: cargo test -p rustsat-minisat --verbose
env:
CMAKE_BUILD_PARALLEL_LEVEL: ${{ fromJSON('["", "4"]')[matrix.os == 'macos-latest'] }}