Skip to content

Fix the missing examples dir bug #13

Fix the missing examples dir bug

Fix the missing examples dir bug #13

Workflow file for this run

name: Run Tests
on:
push:
tags:
- 'v*'
pull_request:
branches:
- main
workflow_dispatch:
permissions:
contents: read
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Zig
uses: goto-bus-stop/setup-zig@v2
with:
version: '0.15.1'
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y make
- name: Run the Tests
run: make test