Skip to content

new cat

new cat #33

Workflow file for this run

name: Checks
'on':
push:
branches:
- main
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout-Repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5.5.0
with:
go-version: "1.24.3"
check-latest: true
cache-dependency-path: |
go.sum
- name: Build App
run: go build -o gofetch .
- name: Upload
uses: actions/upload-artifact@v4
with:
name: gofetch
path: gofetch