Skip to content

docs-formatting: Reordered imports #46

docs-formatting: Reordered imports

docs-formatting: Reordered imports #46

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_call:
permissions:
contents: read
jobs:
all-tests:
runs-on: ubuntu-22.04
strategy:
fail-fast: true
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sh ci/01-install.sh
- name: Safe tests
run: |
sh ci/02-safe-tests.sh
- name: Unsafe tests
run: |
sh ci/03-unsafe-tests.sh