Bump deps & optimize neg_3 #27
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: Cairo Zero (Fustat) tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
pre_job: | |
# continue-on-error: true # Uncomment once integration is finished | |
runs-on: ubuntu-latest | |
# Map a step output to a job output | |
outputs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
steps: | |
- id: skip_check | |
uses: fkirc/skip-duplicate-actions@v5 | |
with: | |
concurrent_skipping: 'same_content_newer' | |
test-fustat: | |
needs: pre_job | |
if: needs.pre_job.outputs.should_skip != 'true' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10.14 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.10.14 | |
- name: Setup repo | |
run: make setup | |
- name: Check cairo Formatting | |
run: | | |
source venv/bin/activate && ./tools/make/fustat_format_check.sh | |
- name: Compile cairo files | |
run: source venv/bin/activate && make clean && ./tools/make/build.sh tests | |
- name: Run fustat programs | |
run: | | |
source venv/bin/activate | |
pytest tests/fustat_programs/test_fustat.py -n auto -s -x |