ci: Add default build test

This commit is contained in:
2026-04-03 13:53:43 +02:00
parent 12a95a3efe
commit e83b4be8c5

21
.gitea/workflows/test.yml Normal file
View File

@@ -0,0 +1,21 @@
name: Gol CI
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install cmake
run: |
sudo apt-get update
sudo apt-get install -y cmake
- name: Build and test
run: |
mkdir build
cd build
cmake ..
make