Skip to content

Add AutoJudge implementation #49

Add AutoJudge implementation

Add AutoJudge implementation #49

Workflow file for this run

name: Run Python unit tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install pytest
run: |
pip install -U pip
pip install pytest
- name: Install self
run: |
pip install -e .
- name: Run tests with pytest
run: |
pytest