Skip to content

Feature/cleanups

Feature/cleanups #41

Workflow file for this run

name: Go
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: stable
- name: Run test
run: go test -v -coverprofile cover.out ./... | tee test.out
shell: bash
- name: Process results
if: always()
uses: malaupa/[email protected]
with:
test_results: "test.out"
coverage_profile: "cover.out"
with_archive: true
- name: Build
run: go build -v ./...