From 383f7d47c63b025d8dcaef6dfeba5093fd07ef93 Mon Sep 17 00:00:00 2001 From: Frederik Ring Date: Sat, 2 Sep 2023 20:22:18 +0200 Subject: [PATCH] Set up CI --- .gitea/workflows/build.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..4bbff69 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,17 @@ +name: Build + +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Install Docker + run: curl -fsSL https://get.docker.com | sh + - name: Build + run: | + make build