Release 0.4.2 #385
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: Test | |
on: | |
push: | |
branches: | |
- main | |
- 'release/*' | |
pull_request: | |
branches: | |
- main | |
- 'release/*' | |
jobs: | |
wait-on-wheel: | |
name: Wait for wheel | |
runs-on: ubuntu-latest | |
steps: | |
- name: Wait on build.yaml to build the wheel | |
uses: lewagon/[email protected] | |
with: | |
# When triggered on a pull request, github.sha is a temporary merge commit for the PR. The wait | |
# action must wait on the SHA of the commit that triggered the workflow, which is the HEAD of the | |
# PR branch. https://github.com/lewagon/wait-on-check-action/issues/25#issuecomment-784773361 | |
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} | |
# NOTE: Fake ternary operator, see https://github.com/actions/runner/issues/409 | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
check-name: 'Wheel' | |
allowed-conclusions: success | |
wait-interval: 10 | |
test-coverage: | |
name: Coverage | |
needs: wait-on-wheel | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Upgrade pip | |
run: python3 -m pip install --upgrade pip | |
- name: Download wheel artifact | |
uses: dawidd6/action-download-artifact@v2 | |
with: | |
workflow: build.yaml | |
workflow_conclusion: success | |
commit: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} | |
# NOTE: Fake ternary operator, see https://github.com/actions/runner/issues/409 | |
# This is needed because Windows terminal cannot expand `pip install galois-*.whl` | |
- name: Get wheel file name | |
uses: tj-actions/glob@v15 | |
id: glob | |
with: | |
files: galois-*.whl | |
working-directory: dist/ | |
- name: Install the dev dependencies | |
run: python3 -m pip install -r requirements-dev.txt | |
- name: Install the `galois` package wheel with upgraded dependencies | |
run: python3 -m pip install --upgrade dist/${{ steps.glob.outputs.paths }} | |
- name: Test with pytest | |
run: python3 -m pytest -n auto --cov=galois --cov-report=xml tests/ | |
- name: Upload coverage report | |
uses: codecov/codecov-action@v3 | |
with: | |
version: v0.7.3 | |
fail_ci_if_error: false | |
verbose: true | |
test-min: | |
name: Min | |
needs: wait-on-wheel | |
if: ${{ github.event_name == 'pull_request' }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-13, windows-latest] | |
python-version: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Upgrade pip | |
run: python3 -m pip install --upgrade pip | |
- name: Download wheel artifact | |
uses: dawidd6/action-download-artifact@v2 | |
with: | |
workflow: build.yaml | |
workflow_conclusion: success | |
commit: ${{github.event.pull_request.head.sha}} | |
# This is needed because Windows terminal cannot expand `pip install galois-*.whl` | |
- name: Get wheel file name | |
uses: tj-actions/glob@v15 | |
id: glob | |
with: | |
files: galois-*.whl | |
working-directory: dist/ | |
- name: Install minimum package dependencies | |
run: python3 -m pip install -r requirements-min.txt | |
- name: Install the dev dependencies | |
run: python3 -m pip install -r requirements-dev.txt | |
- name: Install the `galois` package wheel | |
run: python3 -m pip install dist/${{ steps.glob.outputs.paths }} | |
- name: Test with pytest | |
run: python3 -m pytest -n auto tests/ | |
- name: Upload coverage report | |
uses: codecov/codecov-action@v3 | |
with: | |
version: v0.7.3 | |
fail_ci_if_error: false | |
verbose: true | |
test-latest: | |
name: Latest | |
needs: wait-on-wheel | |
if: ${{ github.event_name == 'pull_request' }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12] | |
# https://github.com/actions/runner-images/issues/9770#issuecomment-2085623315 | |
exclude: # Python < v3.8 does not support Apple Silicon ARM64 | |
- python-version: "3.7" | |
os: macos-latest | |
include: # So run those legacy versions on Intel CPUs | |
- python-version: "3.7" | |
os: macos-13 | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Upgrade pip | |
run: python3 -m pip install --upgrade pip | |
- name: Download wheel artifact | |
uses: dawidd6/action-download-artifact@v2 | |
with: | |
workflow: build.yaml | |
workflow_conclusion: success | |
commit: ${{github.event.pull_request.head.sha}} | |
# This is needed because Windows terminal cannot expand `pip install galois-*.whl` | |
- name: Get wheel file name | |
uses: tj-actions/glob@v15 | |
id: glob | |
with: | |
files: galois-*.whl | |
working-directory: dist/ | |
- name: Install the dev dependencies | |
run: python3 -m pip install -r requirements-dev.txt | |
- name: Install the `galois` package wheel with upgraded dependencies | |
run: python3 -m pip install --upgrade dist/${{ steps.glob.outputs.paths }} | |
- name: Test with pytest | |
run: python3 -m pytest -n auto tests/ | |
- name: Upload coverage report | |
uses: codecov/codecov-action@v3 | |
with: | |
version: v0.7.3 | |
fail_ci_if_error: false | |
verbose: true |