Skip to content

Reintroduce tox and thoroughly test the project #1

Reintroduce tox and thoroughly test the project

Reintroduce tox and thoroughly test the project #1

Workflow file for this run

name: Main
on:
pull_request: null
push:
branches:
- master
jobs:
build:
name: Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup python
uses: actions/setup-python@v5
with:
python-version: "
pypy3.10
pypy3.11
3.10
3.11
3.12
3.13
3.14
"
- name: Install dependencies
run: |
python -m pip install coveralls tox tox-uv
- name: Run test
run: |
tox
- name: Coveralls
run: coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}