Skip to content

Rename Project to Go Starter #25

Rename Project to Go Starter

Rename Project to Go Starter #25

Workflow file for this run

name: test
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.1
- name: Format the source code and check for differences
run: go fmt ./... && git diff --exit-code HEAD
- name: Run unit tests
run: go test -v ./...