Skip to content

Add ./tests to pytest test paths so aiostream/test_utils is not mista… #219

Add ./tests to pytest test paths so aiostream/test_utils is not mista…

Add ./tests to pytest test paths so aiostream/test_utils is not mista… #219

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
Quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: pre-commit/[email protected]
Tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8"]
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install test requirements
run: pip install -e .[dev]
- name: Run tests
run: pytest
- name: Upload coverage
uses: codecov/codecov-action@v4
with:
env_vars: OS,PYTHON
token: ${{ secrets.CODECOV_TOKEN }}
Release:
runs-on: ubuntu-latest
needs: [Quality, Tests]
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Build wheel and source distribution
run: |
pip install build
python -m build --sdist --wheel
- name: Publish source package on PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.pypi_password }}