Skip to content

Add CI/CD workflows with tox and GitHub Actions for comprehensive testing, styling, and quality checks #3

Add CI/CD workflows with tox and GitHub Actions for comprehensive testing, styling, and quality checks

Add CI/CD workflows with tox and GitHub Actions for comprehensive testing, styling, and quality checks #3

Workflow file for this run

name: Quality
on:
push:
branches:
- main
pull_request:
branches:
- '**'
jobs:
quality-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Install dependencies
run: pip install tox
- name: Run quality checks
run: tox -e quality