Skip to content

Refactor project structure, update workflows, and improve documentation #2

Refactor project structure, update workflows, and improve documentation

Refactor project structure, update workflows, and improve documentation #2

Workflow file for this run

name: Run Linter Checks
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
branches:
- main
workflow_dispatch:
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.14.1'
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y make
- name: Run Linters
run: make lint