Skip to content

Bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.0 (#291) #537

Bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.0 (#291)

Bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.0 (#291) #537

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- name: Set up Python 3.10
uses: actions/setup-python@v5.2.0
with:
python-version: "3.10"
- name: Install dependencies
shell: bash
run: |
python3 -m pip install -e .[lint]
- name: Lint
shell: bash
run: |
scripts/lint
build:
runs-on: ubuntu-latest
needs: lint
strategy:
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4.1.7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
shell: bash
run: |
python3 -m pip install -e .[test]
- name: Test
shell: bash
run: |
scripts/test