From caf8877307f605a95695f7e7a3b5aed7be91efde Mon Sep 17 00:00:00 2001 From: lejulien Date: Fri, 3 Apr 2026 14:04:42 +0200 Subject: [PATCH] ci: Run on MR This also adds the new dependencies --- .gitea/workflows/test.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 84ecce9..038cafc 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -1,18 +1,21 @@ name: Gol CI +# Run on the merge of a pull request to the main branch on: + pull_request: + branches: [main] push: - branches: [ main ] + branches: [main] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Install cmake + - name: Install dependencies run: | sudo apt-get update - sudo apt-get install -y cmake + sudo apt-get install -y cmake libxrandr-dev libxinerama-dev - name: Build and test run: | mkdir build