-
Notifications
You must be signed in to change notification settings - Fork 70
63 lines (54 loc) · 1.68 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Python CI
on:
push:
branches: [ master ]
pull_request:
branches:
- '**'
workflow_dispatch:
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
tests:
runs-on: ${{ matrix.os }}
services:
# Using SQLite3 for integration tests throws `django.db.utils.OperationalError: database table is locked: workbench_xblockstate`.
mysql:
image: mysql:8
env:
MYSQL_ROOT_PASSWORD: rootpw
ports:
- 3307:3306
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04]
python-version: [3.8]
toxenv: [py38-django32, py38-django42, integration-django32, integration-django42, quality, translations-django32, translations-django42]
steps:
- name: checkout repo
uses: actions/checkout@v3
with:
submodules: recursive
- name: setup python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# `libgtk2.0-0` and `libxt6` are required by an older version of Firefox.
- name: Install Required System Packages
if: ${{ startsWith(matrix.toxenv, 'integration') }}
run: |
sudo apt-get update
sudo apt-get install -y libxmlsec1-dev ubuntu-restricted-extras xvfb libxml2-dev libxslt-dev libevent-dev libgtk2.0-0 libxt6
- name: Install translations dependencies
if: ${{ startsWith(matrix.toxenv, 'translations') }}
run: |
sudo apt-get update
sudo apt-get install -y gettext
- name: Install Dependencies
run: make requirements
- name: Run Tests
env:
TOXENV: ${{ matrix.toxenv }}
run: tox