Skip to content

Update changelog 2

Update changelog 2 #32

Workflow file for this run

name: "Lint"
on:
pull_request:
push:
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('**/requirements-dev.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- uses: actions/checkout@v4
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
- name: ShellCheck
uses: ludeeus/action-shellcheck@master
# - name: Pylint
# run: |
# pip install -r requirements-dev.txt
# pylint handle.py
- name: Black
uses: psf/black@stable
- name: Run mypy
uses: sasanquaneuf/mypy-github-action@9d43a0bf65fc419f7aa493ac24af5e2226edffbb
with:
checkName: "lint" # NOTE: this needs to be the same as the job name
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}