Skip to content

Merge pull request #352 from mfixstsci/add-python-3.12-build #410

Merge pull request #352 from mfixstsci/add-python-3.12-build

Merge pull request #352 from mfixstsci/add-python-3.12-build #410

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: pysiaf CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: 'pyproject.toml'
- run: pip install ".[test]"
- run: pip install setuptools
- run: pytest