Skip to content

TypeScript - 2021 day 4 #16

TypeScript - 2021 day 4

TypeScript - 2021 day 4 #16

Workflow file for this run

name: Go
on: push
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: Run gofmt
run: diff -u <(echo -n) <(gofmt -s -l .)
- name: Run tests
run: go test -v ./...