Skip to content

Bump typing-extensions from 4.11.0 to 4.12.0 #346

Bump typing-extensions from 4.11.0 to 4.12.0

Bump typing-extensions from 4.11.0 to 4.12.0 #346

Workflow file for this run

name: Pull-request
on:
- pull_request
defaults:
run:
shell: bash
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: asottile/workflows/.github/actions/[email protected]
- name: Install poetry and dependencies
uses: ./.github/actions/install-dependencies
with:
os: ubuntu-latest
python-version: "3.11"
- name: Load pre-commit cache
id: cached-pre-commit
uses: actions/cache@v3
with:
key: pre-commit-${{ env.pythonLocation }}-${{ hashFiles('.pre-commit-config.yaml') }}
path: ~/.cache/pre-commit
- name: Run pre-commit
run: poetry run pre-commit run --all-files
- name: Run pre-commit-ci-lite
uses: pre-commit-ci/[email protected]
if: failure() || cancelled()
- uses: andymckay/[email protected]
if: failure()
lint-and-test:
strategy:
matrix:
python-version:
- "3.8"
- "3.11"
os:
- ubuntu-latest
- windows-latest
uses: ./.github/workflows/lint-and-test.yml
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}