Files
GameOfLifeEditor/.gitea/workflows/test.yml
lejulien 90b0c13740
Some checks failed
Gol CI / build (pull_request) Failing after 39s
ci: Run on MR
This also adds the new dependencies
2026-04-03 14:04:42 +02:00

25 lines
481 B
YAML

name: Gol CI
# Run on the merge of a pull request to the main branch
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y cmake libxrandr-dev
- name: Build and test
run: |
mkdir build
cd build
cmake ..
make