Skip to content

Bump pypa/cibuildwheel from 2.19.2 to 2.20.0 #104

Bump pypa/cibuildwheel from 2.19.2 to 2.20.0

Bump pypa/cibuildwheel from 2.19.2 to 2.20.0 #104

Workflow file for this run

name: "Python Lint and Tests"
env:
CXXFLAGS: "-D_GLIBCXX_ASSERTIONS"
on: [push, pull_request]
jobs:
build-and-test:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
name: "Build and test Pyguetzli"
runs-on: ubuntu-latest
steps:
- name: "Checkout the repository"
uses: actions/checkout@v4
- name: "Set up Python ${{ matrix.python-version }}"
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: "Install Nox"
run: |
pip3 install setuptools
pip3 install nox
- name: "Lint with flake8"
run: |
python3 -m nox --session lint
- name: "Test with pytest"
run: |
python3 -m nox --session test-${{ matrix.python-version }}