Skip to content

chore: deprecate edx sphinx theme #107

chore: deprecate edx sphinx theme

chore: deprecate edx sphinx theme #107

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ci-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9']
toxenv: [quality, docs, 'py39']
env:
RUNJSHINT: true
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.9'
architecture: x64
- run: pip install -r requirements/ci.txt
- name: Run tox
env:
TOXENV: ${{ matrix.toxenv }}
run: tox
# - name: Run Coverage
# if: matrix.toxenv == 'py39'
# uses: codecov/codecov-action@v3
# with:
# flags: unittests
# fail_ci_if_error: true