linux-bench/.github/workflows/build.yml
Devendra Turkar 3da660a24f
chore: update go version to 1.19 (#84)
- update go verison in go mod
- update go version in github workflow
- replace io/ioutil with os
2023-02-06 08:44:30 +02:00

36 lines
791 B
YAML

name: build
on:
push:
branches:
- main
paths-ignore:
- "*.md"
- "LICENSE"
- "NOTICE"
pull_request:
paths-ignore:
- "*.md"
- "LICENSE"
- "NOTICE"
jobs:
build:
name: Build
runs-on: ubuntu-22.04
steps:
- name: Setup Go
uses: actions/setup-go@v1
with:
go-version: 1.19
- name: Checkout code
uses: actions/checkout@v2
- name: Run unit tests
run: make tests
- name: Upload code coverage
uses: codecov/codecov-action@v1
with:
file: ./coverage.txt
- name: Dry-run release snapshot
uses: goreleaser/goreleaser-action@v2
with:
version: v0.148.0
args: release --snapshot --skip-publish --rm-dist