Skip to content

Merge pull request #123 from openedx/zshkoor/tox-updates #65

Merge pull request #123 from openedx/zshkoor/tox-updates

Merge pull request #123 from openedx/zshkoor/tox-updates #65

Workflow file for this run

---
name: Python CI
on:
push:
branches: [master]
pull_request:
branches:
- '**'
jobs:
run_tests:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version:
- '3.8'
TOX_ENV:
- csslint
- eslint
- quality
- django32
- django42
steps:
- uses: actions/checkout@v2
- name: setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: make ci.test TOX_ENV=${{ matrix.TOX_ENV }}