Skip to content

docs: Add Computational HEP Traineeship Summer School 2023 (#56) #121

docs: Add Computational HEP Traineeship Summer School 2023 (#56)

docs: Add Computational HEP Traineeship Summer School 2023 (#56) #121

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.x' ]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install pre-commit
pre-commit install
- name: Lint with pre-commit
run: |
pre-commit run --all-files