Skip to content

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #120

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #120

Workflow file for this run

name: pytest
on:
workflow_dispatch:
pull_request:
jobs:
unit:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Invoke Unit Tests
uses: ./.github/actions/pytest
with:
path: tests/unit
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
system:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Invoke System Tests
uses: ./.github/actions/pytest
with:
path: tests/system
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}