Skip to content

Add ability to get information about untestable languages #178

Add ability to get information about untestable languages

Add ability to get information about untestable languages #178

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@v2
- name: Set up Python
uses: actions/setup-python@v2
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/