npbackup/.github/workflows/linux.yaml

38 lines
1.3 KiB
YAML
Raw Permalink Normal View History

2024-01-02 05:10:38 +08:00
name: linux-tests
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
# Python 3.3 and 3.4 have been removed since github won't provide these anymore
# As of 2023/01/09, we have removed python 3.5 and 3.6 as they don't work anymore with linux on github
# As of 2023/08/30, we have removed python 2.7 since github actions won't provide it anymore
# As of 2024/09/15, we have (temporarily) removed 'pypy-3.10' and 'pypy-3.8' since msgspec won't compile properly
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12", 'pypy-3.6', 'pypy-3.7']
2024-01-02 05:10:38 +08:00
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools
if [ -f npbackup/requirements.txt ]; then pip install -r npbackup/requirements.txt; fi
- name: Generate Report
env:
RUNNING_ON_GITHUB_ACTIONS: true
run: |
pip install pytest coverage
python -m coverage run -m pytest -vvs tests
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v3