Skip to content

Commit

Permalink
Add simple workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Nischal2015 committed May 2, 2024
1 parent aa8e946 commit 3038231
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Main

on:
push:
branches:
- main

jobs:
setup_go:
name: Setup golang
runs-on: self-hosted

steps:
- name: Checkout code
uses: actions/checkout@v5

- name: Setup Golang environment
uses: actions/setup-go@v5
with:
go-version: '>1.17.0'

- name: Print go version
run: go version

0 comments on commit 3038231

Please sign in to comment.