Skip to content

Movve find_import_end_line to utils.py #79

Movve find_import_end_line to utils.py

Movve find_import_end_line to utils.py #79

Workflow file for this run

name: "push test"
on: push
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
exclude:
- os: windows-latest
python-version: "3.13"
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
check-latest: true
- name: Install dependencies
if: runner.os == 'Windows'
run: pip install -r requirements.txt
- name: Run tests
run: |
python tests/runtests.py
continue-on-error: false