Skip to content

[Snyk] Security upgrade requests from 2.31.0 to 2.32.0 #7

[Snyk] Security upgrade requests from 2.31.0 to 2.32.0

[Snyk] Security upgrade requests from 2.31.0 to 2.32.0 #7

Workflow file for this run

# Run the project's linting suite via Pre-Commit
name: Lint
on: # yamllint disable-line rule:truthy
push:
branches:
- master
- main
- '*.*'
- 'staging*'
pull_request:
branches:
- master
- main
- '*.*'
- 'staging*'
jobs:
lint:
name: Lint with Pre-Commit
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
shell: bash
run: ./ci/install.sh
- name: List dependencies
shell: bash
run: pip list
- name: Run Pre-Commit hooks
uses: pre-commit/[email protected]