From 659bd70c759a6260a4ed00ef1bff69fa5d45242a Mon Sep 17 00:00:00 2001 From: csxkdv Date: Tue, 6 Jan 2026 17:31:10 -0300 Subject: [PATCH] Workflow added for testing purposes --- .gitea/workflows/compile.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/compile.yml diff --git a/.gitea/workflows/compile.yml b/.gitea/workflows/compile.yml new file mode 100644 index 0000000..dde3f7b --- /dev/null +++ b/.gitea/workflows/compile.yml @@ -0,0 +1,16 @@ +name: Compile +run-name: Compiling software (Ubuntu) +on: [push] + +jobs: + Compile: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Compile software + run: bundle install + + - name: Execute program + uses: bundle exec ruby main.rb \ No newline at end of file