Skip to content

chore: keep rust version up-to-date with stable channel in CI #615

chore: keep rust version up-to-date with stable channel in CI

chore: keep rust version up-to-date with stable channel in CI #615

Workflow file for this run

name: Build and Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache cargo bin
uses: actions/cache@v2
with:
path: ~/.cargo/bin
key: ${{ runner.os }}-cargo-bin
- name: Install cbc
run: sudo apt-get install coinor-libcbc-dev
- name: Test
run: make test
nits:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install cargo deadlinks
run: |
curl -L -o ~/.cargo/bin/cargo-deadlinks https://github.com/deadlinks/cargo-deadlinks/releases/download/0.4.2/deadlinks-linux
chmod +x ~/.cargo/bin/cargo-deadlinks
cargo deadlinks --version
- name: Nits
run: make nits