Skip to content

Merge pull request #14 from pilinux/dependabot/go_modules/golang.org/… #34

Merge pull request #14 from pilinux/dependabot/go_modules/golang.org/…

Merge pull request #14 from pilinux/dependabot/go_modules/golang.org/… #34

Workflow file for this run

name: Go
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
steps:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.18
- run: go version
- name: Checkout repository
uses: actions/checkout@v4
- name: Examine source code for Linux AMD
run: GOOS=linux GOARCH=amd64 go vet -v ./...
- name: Examine source code for MacOS AMD
run: GOOS=darwin GOARCH=amd64 go vet -v ./...
- name: Examine source code for Windows AMD
run: GOOS=windows GOARCH=amd64 go vet -v ./...
- name: Examine source code for Linux ARM
run: GOOS=linux GOARCH=arm64 go vet -v ./...
- name: Examine source code for MacOS ARM
run: GOOS=darwin GOARCH=arm64 go vet -v ./...
- name: Examine source code for Windows ARM
run: GOOS=windows GOARCH=arm64 go vet -v ./...
- name: Build
run: go build -v ./...
- name: Test
if: github.event_name == 'push'
run: go test -v -cover -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
if: github.event_name == 'push'
run: bash <(curl -s https://codecov.io/bash)
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Update Go report card
if: github.event_name == 'push'
uses: creekorful/[email protected]