build(deps): bump third_party/cores/veer-el2 from 6f8f175
to fe70fb6
#10519
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: "Code Quality Checks" | |
on: | |
push: | |
pull_request: | |
jobs: | |
Test: | |
name: "Code Quality Checks" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.7 | |
- name: Script | |
run: | |
pip install -r conf/requirements.txt | |
- name: Make | |
run: | |
make format | |
- name: Test | |
run: | |
test $(git status --porcelain | wc -l) -eq 0 || { git diff; false; } | |
- name: License | |
uses: SymbiFlow/actions/checks@main | |
with: | |
exclude_directory: | | |
./.git/ | |
./.github/ | |
./.dependabot/ | |
./miniconda.sh | |
./build/ | |
third_party: | | |
./third_party/cores/ | |
./third_party/tests/ | |
./third_party/tools/ | |