2024-08-02 17:01:38 +02:00
|
|
|
|
|
|
|
|
2023-11-09 20:37:13 +01:00
|
|
|
name: tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 8 * * *'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2024-08-25 15:37:43 +02:00
|
|
|
python-version: ['3.12', '3.11']
|
2023-11-09 20:37:13 +01:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
run: |
|
|
|
|
echo $GITHUB_REF $GITHUB_SHA
|
|
|
|
git clone https://github.com/$GITHUB_REPOSITORY.git .
|
|
|
|
git fetch origin $GITHUB_SHA:temporary-ci-branch
|
|
|
|
git checkout $GITHUB_SHA || (git fetch && git checkout $GITHUB_SHA)
|
|
|
|
- name: 'fetch master'
|
|
|
|
run: |
|
|
|
|
git fetch origin master
|
|
|
|
|
|
|
|
- name: 'Set up Python ${{ matrix.python-version }}'
|
2024-08-25 15:37:43 +02:00
|
|
|
uses: actions/setup-python@v5
|
2023-11-09 20:37:13 +01:00
|
|
|
# https://github.com/marketplace/actions/setup-python
|
|
|
|
with:
|
|
|
|
python-version: '${{ matrix.python-version }}'
|
|
|
|
cache: 'pip' # caching pip dependencies
|
2024-08-02 17:01:38 +02:00
|
|
|
cache-dependency-path: '**/requirements.*.txt'
|
2023-11-09 20:37:13 +01:00
|
|
|
|
|
|
|
- name: 'Bootstrap dev venv'
|
|
|
|
# The first CLI call will create the .venv
|
|
|
|
run: |
|
|
|
|
./dev-cli.py version
|
|
|
|
|
|
|
|
- name: 'dev CLI help'
|
|
|
|
run: |
|
|
|
|
./dev-cli.py --help
|
|
|
|
|
2024-08-02 17:01:38 +02:00
|
|
|
- name: 'Run pip-audit'
|
2023-11-09 20:37:13 +01:00
|
|
|
run: |
|
2024-08-02 17:01:38 +02:00
|
|
|
./dev-cli.py pip-audit
|
2023-11-09 20:37:13 +01:00
|
|
|
|
|
|
|
- name: 'Run tests with Python v${{ matrix.python-version }}'
|
2024-08-02 17:01:38 +02:00
|
|
|
env:
|
|
|
|
PYTHONUNBUFFERED: 1
|
|
|
|
PYTHONWARNINGS: always
|
2023-11-09 20:37:13 +01:00
|
|
|
run: |
|
|
|
|
.venv/bin/coverage erase
|
|
|
|
./dev-cli.py coverage
|
|
|
|
|
|
|
|
- name: 'Upload coverage report'
|
2024-08-25 15:37:43 +02:00
|
|
|
uses: codecov/codecov-action@v4
|
2023-11-09 20:37:13 +01:00
|
|
|
# https://github.com/marketplace/actions/codecov
|
|
|
|
with:
|
|
|
|
fail_ci_if_error: false
|
|
|
|
verbose: true
|
2024-08-02 17:01:38 +02:00
|
|
|
|