Skip to content

Fix link to jobs page #81

Fix link to jobs page

Fix link to jobs page #81

Workflow file for this run

name: CI/CD
on:
pull_request:
push:
tags:
- "*"
branches:
- main
jobs:
style:
name: Code Style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip pre-commit
- name: Run pre-commit
run: pre-commit install && pre-commit run --all-files --show-diff-on-failure