Skip to content

docs: Update security e-mail address correctly. (#222) #204

docs: Update security e-mail address correctly. (#222)

docs: Update security e-mail address correctly. (#222) #204

Workflow file for this run

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-20.04]
python-version: [3.8]
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 update -y; sudo apt install python3-dev -y;"
- name: Run Tests
env:
TARGETS: ${{ matrix.test-target }}
run: |
docker exec ecomworker bash -c "cd /edx/app/ecomworker/ecomworker && make $TARGETS"
- name: Run Coverage
if: matrix.test-target == 'test'
run: |
pip install -U codecov
codecov