Skip to content

Bump setuptools from 65.5.0 to 65.5.1 #68

Bump setuptools from 65.5.0 to 65.5.1

Bump setuptools from 65.5.0 to 65.5.1 #68

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a
# variety of Python versions.
name: Build
on:
workflow_dispatch:
workflow_call:
push:
branches:
- main
pull_request:
branches:
- main
env:
PYTHON_VERSION: '3.11'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.PYTHON_VERSION }}
cache: 'pip'
- name: Install Python dependencies
run: |
python -m pip install -U pip
python -m pip install -r requirements-freeze.txt
- name: Run pre-commit checks
uses: pre-commit/action@v3.0.0
- name: Run tests
run: |
python -m unittest discover -p 'test_*.py' -t ..
working-directory: tests