Skip to content

Bump actions/checkout from 3.3.0 to 3.5.3 #46

Bump actions/checkout from 3.3.0 to 3.5.3

Bump actions/checkout from 3.3.0 to 3.5.3 #46

Workflow file for this run

name: Lint
on:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
lint-type: [black, flake8]
steps:
- uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: pip install tox
- name: Run ${{ matrix.lint-type }}
run: tox -e ${{ matrix.lint-type }}