Skip to content

feat: add upgrade command and background update notice #5

feat: add upgrade command and background update notice

feat: add upgrade command and background update notice #5

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Format check
run: |
if [ -n "$(gofmt -l .)" ]; then
echo "Code is not formatted. Run 'make fmt'"
gofmt -d .
exit 1
fi
- name: Vet
run: go vet ./...
- name: Test
run: go test ./...
- name: Build
run: make build