Skip to content

DO NOT MERGE: Repository consolidation testing #5

DO NOT MERGE: Repository consolidation testing

DO NOT MERGE: Repository consolidation testing #5

Workflow file for this run

name: Run all tests & checks
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
run_tests:
name: tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.11','3.12' ]
permissions:
# Gives the action the necessary permissions for publishing new
# comments in pull requests.
pull-requests: write
# Gives the action the necessary permissions for pushing data to the
# python-coverage-comment-action branch, and for editing existing
# comments (to avoid publishing multiple comments in the same PR)
contents: write
steps:
- uses: actions/checkout@v4
- name: setup python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install pip
run: pip install -r requirements/pip.txt
- name: Install Dependencies
run: pip install -r requirements/ci.txt
- name: Run Tests
run: tox