Skip to content

chore: update copyright year #48

chore: update copyright year

chore: update copyright year #48

Workflow file for this run

name: Lint
on:
push:
pull_request:
schedule:
- cron: 0 0 1 * * # monthly
jobs:
gitlint:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
- name: Install dependencies
run: pip install gitlint
- name: Run gitlint
run: gitlint
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
- name: Run pre-commit
uses: pre-commit/action@v2.0.3