First commit: Publish project as open source.

This commit is contained in:
Keyitdev
2026-07-28 12:52:19 +02:00
commit cc51c61859
27 changed files with 2995 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
# These are supported funding model platforms
ko_fi: keyitdev
+21
View File
@@ -0,0 +1,21 @@
name: build
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
cc: [gcc, clang]
steps:
- uses: actions/checkout@v4
- name: Build
run: make CC=${{ matrix.cc }} CFLAGS="-O2 -Wall -Wextra -Werror -std=c11"
- name: Smoke test
run: ./asus-fan-control-ec help
- name: Staged install
run: make install DESTDIR=/tmp/pkg PREFIX=/usr && find /tmp/pkg -type f