Skip to content

Commit

Permalink
Create 2024.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SylivanKenobi authored Dec 3, 2024
1 parent eee2d9f commit 9c1af7b
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/2024.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 9c1af7b

Please sign in to comment.