Skip to content

Bump pypa/gh-action-pypi-publish from 1.8.11 to 1.8.12 #221

Bump pypa/gh-action-pypi-publish from 1.8.11 to 1.8.12

Bump pypa/gh-action-pypi-publish from 1.8.11 to 1.8.12 #221

Workflow file for this run

name: tests
on:
push:
branches:
- master
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
runs-on: ${{ matrix.platform }}
env:
PLATFORM: ${{ matrix.platform }}
PYTHON_VERSION: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4.1.1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install .[tests]
- name: Test with pytest
run: pytest --cov --cov-report=xml tests/
- uses: codecov/codecov-action@v4.1.0
with:
env_vars: PLATFORM,PYTHON_VERSION
fail_ci_if_error: false