Windows compatibility and CI integration #6

Merged
lejulien merged 3 commits from lju/windows-compat into main 2026-04-03 11:57:28 +00:00
Showing only changes of commit d16319084b - Show all commits

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