Skip to content

Add blog post for part 2 of reusable research BoF #90

Add blog post for part 2 of reusable research BoF

Add blog post for part 2 of reusable research BoF #90

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@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Run pre-commit hooks
uses: pre-commit/action@v3.0.0