Skip to content

Add test and release workflows using GitHub Actions #2

Add test and release workflows using GitHub Actions

Add test and release workflows using GitHub Actions #2

Workflow file for this run

name: tests
on:
pull_request:
branches:
- '*'
push:
branches:
- master
jobs:
linting:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
cache: true
cache-dependency-path: go.sum
go-version-file: go.mod
- name: Run Linter
uses: golangci/golangci-lint-action@v3
with:
version: v1.55.2
unit-testing:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
cache: true
cache-dependency-path: go.sum
go-version-file: go.mod
- name: Build
run: go build -v ./...
- name: Run Tests
run: go test -json ./... > test-results.json
- name: Annotate Tests
if: always()
uses: guyarb/[email protected]
with:
test-results: test-results.json