Skip to content

Fix a few bugs

Fix a few bugs #3

Workflow file for this run

name: Run Linter Checks
on:
workflow_dispatch:
push:
tags:
- 'v*'
pull_request:
branches:
- main
concurrency:
group: 'lints'
cancel-in-progress: true
permissions:
contents: read
jobs:
lints:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install Zig
uses: goto-bus-stop/setup-zig@v2
with:
version: '0.15.2'
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y make
- name: Run Linter Checks
run: make lint