Skip to content

Polish the main README.md #22

Polish the main README.md

Polish the main README.md #22

Workflow file for this run

name: Run Linter Checks
on:
workflow_dispatch:
push:
tags:
- 'v*'
pull_request:
branches:
- main
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 Linters
run: make lint