Added Mint logo, fixed some bugs and added docs.
build / clang-build (push) Successful in 21s

This commit is contained in:
2025-11-14 18:50:22 +01:00
parent 0e174c58d7
commit 46752cd701
5 changed files with 177 additions and 24 deletions
+16
View File
@@ -0,0 +1,16 @@
name: build
on: [push,pull_request,workflow_dispatch]
jobs:
clang-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Clang
run: sudo apt update && sudo apt install -y clang
- name: Build Datum
run: |
clang zfetch.c -Wall -Wextra -Werror -pedantic-errors -fstack-protector-all -fsanitize=undefined -fsanitize=address -Wwrite-strings -o zfetch
./zfetch