This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
63 lines (58 loc) · 1.88 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
- /^\d+\.\d+(\.\d+)?(-\S*)?$/
pull_request:
branches:
- '**'
jobs:
run_tests:
name: Tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: [3.8, 3.11, 3.12]
test-target: [test, quality]
steps:
- uses: actions/checkout@v1
- name: setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Build Docker
run: |
docker compose -f .github/docker-compose-ci.yml up -d
docker exec ecomworker bash -c "
sudo apt-get update -y &&
sudo apt-get install python${{ matrix.python-version }} \
python${{ matrix.python-version }}-dev \
python${{ matrix.python-version }}-distutils -y &&
curl -sS https://bootstrap.pypa.io/get-pip.py | python${{ matrix.python-version }};"
# Need to install pip from source here^ otherwise some packages don't get installed
- name: Format Python Version
run: |
PYTHON_VERSION=${{ matrix.python-version }}
FORMATTED_VERSION=${PYTHON_VERSION/3./py3}
echo "PYTHON_VERSION=$FORMATTED_VERSION" >> $GITHUB_ENV
- name: Install dependencies
run: |
docker exec -t ecomworker bash -c "
cd /edx/app/ecomworker/ecomworker &&
python${{ matrix.python-version }} -m pip install tox
"
- name: Run Tests
env:
TARGETS: ${{ matrix.test-target }}
run: |
docker exec ecomworker bash -c "
cd /edx/app/ecomworker/ecomworker &&
PYTHON_VERSION=${{ matrix.python-version }} PYTHON_ENV=$PYTHON_VERSION make $TARGETS"
- name: Run Coverage
if: matrix.test-target == 'test' && matrix.python-version == '3.8'
run: |
pip install -U codecov
codecov