Skip to content

Bump supercharge/mongodb-github-action from 1.10.0 to 1.11.0 #2573

Bump supercharge/mongodb-github-action from 1.10.0 to 1.11.0

Bump supercharge/mongodb-github-action from 1.10.0 to 1.11.0 #2573

Workflow file for this run

name: Lint
on:
pull_request:
types:
- "opened"
- "synchronize"
push:
branches:
- "main"
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.8" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1.3.4
- name: Setup cache
id: cached-poetry-dependencies
uses: actions/cache@v4
with:
path: |
~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-py${{ matrix.python-version }}-poetry-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
run: |
poetry install -E all
- name: Lint
run: |
poetry run pre-commit run --all-files --show-diff-on-failure