Skip to content

build(deps-dev): bump zipp from 3.18.1 to 3.19.1 #125

build(deps-dev): bump zipp from 3.18.1 to 3.19.1

build(deps-dev): bump zipp from 3.18.1 to 3.19.1 #125

Workflow file for this run

name: CI
on:
push:
pull_request:
branches: [ master ]
jobs:
build:
timeout-minutes: 20
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 6
matrix:
os: [ 'ubuntu-latest', 'macos-latest' ,'windows-latest' ]
python: [ pypy-3.8, 3.8, 3.9, '3.10', '3.11', '3.12' ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install python pre-requisites
run: python -m pip install -U pip nox pipx
- name: Install poetry
run: pipx install "poetry<1.8.0"
- name: Lint
run: nox -s lint
if: matrix.os == 'ubuntu-latest' && matrix.python == '3.12'
- name: Scan packages for vulnerabilities
run: nox -s safety
if: matrix.os == 'ubuntu-latest' && matrix.python == '3.12'
- name: CPython tests
run: nox -s tests-${{ matrix.python }}
if: matrix.python != 'pypy-3.8'
- name: Pypy tests
run: nox -s tests-pypy3
if: matrix.python == 'pypy-3.8'
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
if: matrix.python == '3.12'
with:
token: ${{ secrets.codecov_token }}