PyInventory/.github/workflows/tests.yml

68 wiersze
1.7 KiB
YAML

2021-04-05 13:23:32 +00:00
name: tests
on:
2021-04-05 13:23:32 +00:00
push:
2021-11-20 18:14:03 +00:00
branches:
- main
pull_request:
schedule:
- cron: '0 8 * * *'
jobs:
test:
name: 'Python ${{ matrix.python-version }} Django ${{ matrix.django-version }}'
runs-on: ubuntu-latest
strategy:
2021-04-05 13:23:32 +00:00
fail-fast: false
matrix:
python-version: ["3.11", "3.10", "3.9"]
env:
PYTHONUNBUFFERED: 1
PYTHONWARNINGS: always
steps:
2023-04-04 12:47:31 +00:00
- name: Checkout
run: |
2023-04-04 12:47:31 +00:00
echo $GITHUB_REF $GITHUB_SHA
2023-11-01 13:23:08 +00:00
git clone https://github.com/$GITHUB_REPOSITORY.git .
2023-04-04 12:47:31 +00:00
git fetch origin $GITHUB_SHA:temporary-ci-branch
git checkout $GITHUB_SHA || (git fetch && git checkout $GITHUB_SHA)
- name: 'Set up Python ${{ matrix.python-version }}'
2023-04-04 12:47:31 +00:00
uses: actions/setup-python@v4
# https://github.com/marketplace/actions/setup-python
with:
python-version: '${{ matrix.python-version }}'
2023-04-04 12:47:31 +00:00
cache: 'pip' # caching pip dependencies
cache-dependency-path: '**/requirements.*.txt'
2021-04-05 13:23:32 +00:00
- name: 'Bootstrap'
# The first manage.py call will create the .venv
run: |
./manage.py version
- name: 'Install Playwright browsers'
2022-06-20 17:22:58 +00:00
run: |
.venv/bin/playwright install
2022-06-20 17:22:58 +00:00
- name: 'Display all Django commands'
run: |
./manage.py --help
# FIXME:
#- name: 'Safety'
# run: |
# ./manage.py safety
- name: 'Python ${{ matrix.python-version }}'
run: |
./manage.py tox -e $(echo py${{ matrix.python-version }} | tr -d .)
- name: 'Upload coverage report'
2023-04-04 12:47:31 +00:00
uses: codecov/codecov-action@v3
# https://github.com/marketplace/actions/codecov
2022-06-29 16:15:55 +00:00
with:
fail_ci_if_error: false
verbose: true