From 9c1af7bd851121addd8d60e25af506d189db5781 Mon Sep 17 00:00:00 2001 From: Sgilgen <47433493+SylivanKenobi@users.noreply.github.com> Date: Tue, 3 Dec 2024 17:26:01 +0100 Subject: [PATCH] Create 2024.yml --- .github/workflows/2024.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/2024.yml diff --git a/.github/workflows/2024.yml b/.github/workflows/2024.yml new file mode 100644 index 0000000..1427303 --- /dev/null +++ b/.github/workflows/2024.yml @@ -0,0 +1,27 @@ +# This workflow will build a golang project +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go + +name: Go +defaults: + run: + working-directory: "2024" + + +on: + push: + branches: '**' + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.23.3' + + - name: Execute main + run: go run ./main.go