Skip to content

feat: check for tool updates when printing current version #39

feat: check for tool updates when printing current version

feat: check for tool updates when printing current version #39

Workflow file for this run

name: Run Go Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
go-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run tests
run: go tool task test
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}