Skip to content

feat: add sentry support on openedx #1

feat: add sentry support on openedx

feat: add sentry support on openedx #1

Workflow file for this run

name: Run tests
on:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.12']
steps:
- uses: actions/checkout@v3
- name: Set up Python {{ '${{ matrix.python-version }}' }}
uses: actions/setup-python@v5
with:
python-version: {{ '${{ matrix.python-version }}' }}

Check failure on line 17 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Run tests

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 17, Col: 27): A mapping was not expected
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: |
pip install .[dev]
- name: Test lint, types, and format
run: make test