Skip to content

Minor godoc updates #12

Minor godoc updates

Minor godoc updates #12

Workflow file for this run

name: Lint and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 10
defaults:
run:
shell: bash
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Run Lint
uses: golangci/golangci-lint-action@v5
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 10
defaults:
run:
shell: bash
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Setup Task
uses: arduino/setup-task@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Download Dependencies
run: go mod download
- name: Run test
run: task test
env:
TWICKETS_API_KEY: ${{ secrets.TWICKETS_API_KEY }}