Skip to content

feat(tests): configuration management system #125

feat(tests): configuration management system

feat(tests): configuration management system #125

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install package (with test deps)
run: python -m pip install -e ".[dev,full]"
- name: Compile
run: python -m compileall -q code2logic
- name: Pytest
run: pytest