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

Skip to content

Merge pull request #251 from zblz/fix/247-data-table-sort-order #98

Merge pull request #251 from zblz/fix/247-data-table-sort-order

Merge pull request #251 from zblz/fix/247-data-table-sort-order #98

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
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: [lint, format]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.13
- name: Install Tox
run: pip install tox
- name: Run linter
run: tox -e ${{ matrix.linter }}