Avoided duplicate code in HEkk::lpFactorRowCompatible and added solut… #3840
Workflow file for this run
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@v3 | |
- name: bazel clean | |
run: bazel clean | |
- name: build bazel | |
run: bazel build //... | |
- name: test all | |
run: bazel test //... | |
- name: test example | |
run: ./bazel-bin/call-highs-example |