Skip to content

❇️ added the code quality gh action check #13

❇️ added the code quality gh action check

❇️ added the code quality gh action check #13

name: Run Tox Tests
on:
pull_request:
branches: [ main, dev ]
push:
branches: [ main, dev, gh_workflows ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install tox
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run tox
run: tox