Skip to content

Installation of scip in workflow #2

Installation of scip in workflow

Installation of scip in workflow #2

Workflow file for this run

on: push
name: Build and test
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install scip via anaconda
run: conda install --channel conda-forge scip -y
- name: Build
run: cargo build --release --all-features --verbose
- name: Test
run: cargo test --release --all-features --verbose
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Clippy
run: cargo clippy --all-features -- -D warnings
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Format
run: cargo fmt --all -- --check