Remove Python 3.8 support (#34) #54
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: ~ | |
workflow_dispatch: | |
jobs: | |
test: | |
name: Python ${{ matrix.python-version }} | |
runs-on: ubuntu-latest | |
env: | |
USING_COVERAGE: '3.10' | |
strategy: | |
fail-fast: true | |
matrix: | |
python-version: [ "3.9", "3.10", "3.11", "3.12" ] | |
steps: | |
- uses: "actions/checkout@v4" | |
- uses: "actions/setup-python@v5" | |
with: | |
python-version: "${{ matrix.python-version }}" | |
- name: "Install dependencies" | |
run: | | |
set -xe | |
python -VV | |
python -m site | |
python -m pip install --upgrade pip setuptools wheel | |
python -m pip install -r requirements.txt | |
python -m pip install -r requirements-test.txt | |
- name: "Run tests for ${{ matrix.python-version }}" | |
run: | | |
set -xe | |
pip install pytest-cov | |
pip install coverage | |
pytest \ | |
-qq \ | |
--timeout=9 \ | |
--durations=10 \ | |
-n auto \ | |
--cov georss_ingv_centro_nazionale_terremoti_client \ | |
--cov-report xml \ | |
-o console_output_style=count \ | |
-p no:sugar \ | |
tests | |
python -m coverage xml | |
- name: "Upload coverage to Codecov" | |
if: "contains(env.USING_COVERAGE, matrix.python-version)" | |
uses: "codecov/codecov-action@v4" | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true |