Skip to content

update action again #692

update action again

update action again #692

Workflow file for this run

name: Build and Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache cargo bin
uses: actions/cache@v4
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@v4
- name: Install cargo deadlinks
run: |
curl -L -o ~/.cargo/bin/cargo-deadlinks https://github.com/deadlinks/cargo-deadlinks/releases/download/0.8.1/cargo-deadlinks-linux
chmod +x ~/.cargo/bin/cargo-deadlinks
cargo deadlinks --version
- name: Nits
run: make nits