Skip to content

Merge pull request #172 from rchwn/my-changes #275

Merge pull request #172 from rchwn/my-changes

Merge pull request #172 from rchwn/my-changes #275

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