Skip to content

Use a struct instead of sprintf for request body #7

Use a struct instead of sprintf for request body

Use a struct instead of sprintf for request body #7

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