Skip to content

Initial implementation of the accordion XBlock #19

Initial implementation of the accordion XBlock

Initial implementation of the accordion XBlock #19

Workflow file for this run

name: Python CI
on:
push:
branches: [main]
pull_request:
branches:
- '**'
jobs:
run_tests:
name: tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
python-version: |

Check failure on line 18 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Python CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 18, Col: 25): Unexpected value '3.8 3.11 3.12 '
3.8
3.11
3.12
toxenv: [quality, docs, py38-django32, py311-django42, py312-django42]
steps:
- uses: actions/checkout@v4
- name: setup python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install pip
run: pip install -r requirements/pip.txt
- name: Install Dependencies
run: pip install -r requirements/ci.txt
- name: Run Tests
env:
TOXENV: ${{ matrix.toxenv }}
run: tox
- name: Run coverage
if: matrix.python-version == '3.8' && matrix.toxenv == 'django32'
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: python
fail_ci_if_error: false