-
Notifications
You must be signed in to change notification settings - Fork 31
44 lines (39 loc) · 988 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- '**'
jobs:
python-tests:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
python-version:
- '3.8'
- '3.11'
toxenv: [quality, django42]
steps:
- uses: actions/checkout@v2
- name: Python setup
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install GNU gettext
run: sudo apt install gettext
- name: Install Requirements
run: |
pip install -r requirements/pip.txt
pip install -r requirements/ci.txt
- name: Run Tests
run: tox -e ${{ matrix.toxenv }}
- name: Upload coverage to CodeCov
if: matrix.python-version == '3.8' && matrix.toxenv == 'django42'
uses: codecov/codecov-action@v4
with:
file: ./coverage.xml
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}