Skip to content

chore(deps): bump pip from 22.3.1 to 23.3 #33

chore(deps): bump pip from 22.3.1 to 23.3

chore(deps): bump pip from 22.3.1 to 23.3 #33

Workflow file for this run

name: check
on:
workflow_dispatch:
push:
branches: ["main"]
tags-ignore: ["**"]
pull_request:
concurrency:
group: check-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: test with ${{ matrix.py }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
py:
- "3.8"
- "3.11"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup python for test ${{ matrix.py }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
- name: Install tox
run: python -m pip install tox tox-gh
- name: Setup test suite
run: tox -vv --notest
- name: Run test suite
run: tox --skip-pkg-install