Moved pdlp_iteration_count back to where it was inserted, breaking th… #2692
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-bazel | |
on: [push, pull_request] | |
jobs: | |
bazel: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: bazelbuild/setup-bazelisk@v2 | |
- name: Mount bazel cache # Optional | |
uses: actions/cache@v3 | |
with: | |
path: "~/.cache/bazel" | |
key: bazel | |
- name: bazel clean | |
run: bazel clean | |
- name: build bazel | |
run: | | |
bazel build //... | |
- name: test | |
run: ./bazel-bin/call-highs-example |