Added Mint logo, fixed some bugs and added docs.
All checks were successful
build / clang-build (push) Successful in 22s
All checks were successful
build / clang-build (push) Successful in 22s
This commit is contained in:
14
.gitea/workflows/build.yml
Normal file
14
.gitea/workflows/build.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
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
|
||||
Reference in New Issue
Block a user