Skip to content

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

Add a Makefile and a GH workflow which uses it

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

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 install pylint
- name: Run Pylint
run: make lint