This repository was archived by the owner on Jul 30, 2025. It is now read-only.
Merge pull request #210 from globus/release/0.18.0 #107
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: push | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
os-name: [Ubuntu] | |
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
# we do not want a large number of windows and macos builds, so | |
# enumerate them explicitly | |
include: | |
- os: windows-latest | |
os-name: Windows | |
python-version: "3.13" | |
- os: macos-latest | |
os-name: MacOS | |
python-version: "3.13" | |
name: "Test py${{ matrix.python-version }} on ${{ matrix.os-name }}" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: python -m pip install -U pip setuptools tox | |
- run: python -m tox -e py | |
mypy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- run: python -m pip install -U pip setuptools tox | |
- run: python -m tox -e mypy | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- run: python -m pip install pre-commit | |
- run: pre-commit run --all | |
test-doc-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- run: python -m pip install -U pip setuptools tox | |
- run: python -m tox -e docs |