Skip to content

Merge pull request #6 from arshamalh/writing-unit-tests #20

Merge pull request #6 from arshamalh/writing-unit-tests

Merge pull request #6 from arshamalh/writing-unit-tests #20

Workflow file for this run

name: Go Test
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21.0
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test -v ./...
- name: Check code style
run: gofmt -l -s $(find . -type f -name '*.go' -not -path "./vendor/*")