Skip to content

Update requirements and pypi workflow. #201

Update requirements and pypi workflow.

Update requirements and pypi workflow. #201

Workflow file for this run

name: ci
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build-and-test:
name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
os: [ubuntu-latest]
steps:
- uses: "actions/checkout@v5"
- uses: "actions/[email protected]"
with:
python-version: "${{ matrix.python-version }}"
- name: Run CI tests
run: bash test.sh
shell: bash