Skip to content

Echo

Echo #140

# SPDX-FileCopyrightText: 2021-2022 Constantine Evans <[email protected]>
#
# SPDX-License-Identifier: MIT
name: Python tests
on:
push:
branches:
- main
paths-ignore:
- CHANGELOG.md
- README.md
- AUTHORS.md
pull_request:
branches:
- main
paths-ignore:
- CHANGELOG.md
- README.md
- AUTHORS.md
concurrency:
group: test-${{ github.head_ref }}
cancel-in-progress: true
env:
PYTHONUNBUFFERED: "1"
FORCE_COLOR: "1"
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Hatch
run: pip install --upgrade hatch coverage
- name: Run tests
run: |
hatch test --python ${{ matrix.python-version }} --cover --randomize
coverage xml
- name: "Upload coverage to Codecov"
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
fail_ci_if_error: false