Skip to content

Add network documentation about BU CCDS racks #24

Add network documentation about BU CCDS racks

Add network documentation about BU CCDS racks #24

Workflow file for this run

name: Run pre-commit checks
on:
pull_request:
workflow_call:
jobs:
run-linters:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '^3.9'
- name: Configure caching
uses: actions/cache@v2
with:
path: ~/.cache/pre-commit
key: precommit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Install pre-commit
run: |
pip install pre-commit
- name: Run linters
run: |
pre-commit run --all-files