Skip to content

publish package action to use download-artifact v4 instead of v3 #5

publish package action to use download-artifact v4 instead of v3

publish package action to use download-artifact v4 instead of v3 #5

Workflow file for this run

name: Tests
on:
push:
branches: [ "main" ]
paths:
- 'cvmatrix/**'
- 'tests/**'
- '.github/**'
- 'pyproject.toml'
- 'poetry.lock'
jobs:
test_package:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
exclude:
- os: windows-latest
python-version: "3.13"
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/test
with:
PYTHON_VERSION: ${{ matrix.python-version }}