Skip to content

added symlinks\

added symlinks\ #13

Workflow file for this run

name: Run tests
on:
pull_request:
jobs:
run-tests:
strategy:
matrix:
python-version: [3.9, 3.11 ]
os: [ ubuntu-latest ]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest ruff
- name: Lint with Ruff
run: |
ruff --ignore=F401,E501 --output-format=github --target-version=py37 .
continue-on-error: true
- name: Test with pytest
run: |
pytest --verbose --disable-warnings