Skip to content

Add a Makefile and a GH workflow which uses it #13

Add a Makefile and a GH workflow which uses it

Add a Makefile and a GH workflow which uses it #13

Workflow file for this run

name: Link Checks
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Fetch files
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get -q install pylint python3-packaging python3-pil
pip3 install imgkit
- name: Run Pylint
run: make lint