Skip to content

SPath: Implement more helper methods #69

SPath: Implement more helper methods

SPath: Implement more helper methods #69

Workflow file for this run

name: lint
on: [push, pull_request]
jobs:
windows:
runs-on: windows-latest
strategy:
matrix:
python-version:
- '3.12'
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Running flake8
run: flake8 stgpytools
- name: Running mypy
run: mypy stgpytools