Skip to content

Do not index sample programs that do not correspond to a valid projec… #183

Do not index sample programs that do not correspond to a valid projec…

Do not index sample programs that do not correspond to a valid projec… #183

Workflow file for this run

name: PyTest
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: PyTest
run: python -m pytest --cov=subete.repo tests/