Thanks to visit codestin.com
Credit goes to github.com

Skip to content

housekeeping changes from user feedback #122

housekeeping changes from user feedback

housekeeping changes from user feedback #122

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.9, '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install Tox
run: pip install tox
- name: Run tests
run: tox -e py
lint:
runs-on: ubuntu-latest
strategy:
matrix:
linter: [flake8, black, license]
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install Tox
run: pip install tox
- name: Run linter
run: tox -e ${{ matrix.linter }}