Skip to content

Edited Contributing Guide link in README #1423

Edited Contributing Guide link in README

Edited Contributing Guide link in README #1423

name: Linters
on:
pull_request:
branches:
- main
paths-ignore:
- 'README.md'
push:
branches:
- main
paths-ignore:
- 'README.md'
jobs:
pre_commit:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.8.0"
- name: Install dependencies
run: |
apt-get get update && apt-get install cmake
python -m pip install --upgrade pre-commit==2.15.0
- name: Pre-commit tests
run: |
make run_precommit