Skip to content

Merge pull request #88 from dirkmueller/add_system_token #81

Merge pull request #88 from dirkmueller/add_system_token

Merge pull request #88 from dirkmueller/add_system_token #81

Workflow file for this run

name: Golang Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Install Staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Build
run: go build -v ./...
- name: make tests
run: make test