Skip to content

Add a Dependabot config to maintain GitHub action versions #490

Add a Dependabot config to maintain GitHub action versions

Add a Dependabot config to maintain GitHub action versions #490

Workflow file for this run

name: Python linting
on: [push, pull_request]
jobs:
test:
name: Lint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: pip install tox
- name: Run linting
run: tox -e flake8,isort