Skip to content

Use log instead of fmt #6

Use log instead of fmt

Use log instead of fmt #6

Workflow file for this run

name: Go Build
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: 1.22.1
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: go mod download
- name: Build
run: go build -v -o go-ticket-polling ./src