Skip to content

Go Build and Test Action #112

Go Build and Test Action

Go Build and Test Action #112

Workflow file for this run

name: Go Build and Test Action
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '0 0 */28 */1 *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.17
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Coverage Reporting
uses: shogo82148/actions-goveralls@v1.8.0