Skip to content

Bump stdatamodels from 4.1.0 to 5.0.1 #280

Bump stdatamodels from 4.1.0 to 5.0.1

Bump stdatamodels from 4.1.0 to 5.0.1 #280

Workflow file for this run

name: Build Test
on:
push:
branches:
- '*'
pull_request:
branches:
- main
jobs:
job:
name: Build Test
runs-on: ubuntu-latest
strategy:
matrix:
# Versions listed at https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
python-version: [
"3.11",
"3.12",
"3.13",
]
steps:
- uses: actions/checkout@v6
with:
submodules: true
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
pip install .
- name: Build package
run: python -m build