We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2cbe93 commit bbb8c3fCopy full SHA for bbb8c3f
.github/workflows/precommit.yml
@@ -41,13 +41,13 @@ jobs:
41
- uses: actions/checkout@v3
42
43
- name: install infrastructure (Linux)
44
- if: matrix.os == 'ubuntu-22.04'
+ if: ${{ matrix.os ~= ubuntu-* }}
45
run: |
46
sudo apt-get install python3-dev python3-numpy python3-packaging
47
sudo ln -s /usr/lib/llvm-10/include/c++/v1 /usr/include/c++/v1
48
49
- name: install infrastructure (MacOS)
50
- if: matrix.os == 'macos-13'
+ if: ${{ matrix.os ~= macos-* }}
51
run: sudo -H pip3 install numpy packaging
52
53
- name: show bazel setup
0 commit comments