From c8c56cf435428805fc8a1db79dea153daaf3b65d Mon Sep 17 00:00:00 2001 From: Sateallia Date: Sun, 11 Aug 2024 23:45:43 +0300 Subject: [PATCH] Add .gitea / workflows / actions.yaml --- .gitea / workflows / actions.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitea / workflows / actions.yaml diff --git a/.gitea / workflows / actions.yaml b/.gitea / workflows / actions.yaml new file mode 100644 index 0000000..80be380 --- /dev/null +++ b/.gitea / workflows / actions.yaml @@ -0,0 +1,12 @@ +name: Test build +run-name: ${{ gitea.actor }} is building ${{ gitea.repository }} +on: [push] + +jobs: + deploy: + runs-on: linux_amd64 + steps: + - uses: actions/checkout@v4 + + - name: Try building ${{ vars.NAME_PROJECT }} + run: gcc *.c ${{ vars.FLAGS_LDD }} -o ${{ vars.NAME_PROJECT }} \ No newline at end of file