Skip to content

fix: sort collected tests by test name #70

fix: sort collected tests by test name

fix: sort collected tests by test name #70

Workflow file for this run

# This workflow will install Python dependencies, run lint and check
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Check
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.x
uses: actions/setup-python@v5
with:
python-version: 3.x
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 build twine wheel check-manifest
- name: Lint with flake8
run: |
flake8 src tests setup.py noxfile.py docs/conf.py
- name: Checking manifest and dist
run: |
check-manifest
python -m build
twine check dist/*.*