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 bbb8c3f commit c39bfabCopy full SHA for c39bfab
.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-* }}
+ if: startsWith( 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-* }}
+ if: startsWith( matrix.os, 'macos-' )
51
run: sudo -H pip3 install numpy packaging
52
53
- name: show bazel setup
0 commit comments