Skip to content

Documentation

Documentation #23

Workflow file for this run

name: CI
on:
push:
branches:
- main
- "v*"
tags:
- "v*"
pull_request:
jobs:
lint:
name: Go Lint
runs-on: ubuntu-latest
env:
GOPATH: ${{ github.workspace }}/go
GOBIN: ${{ github.workspace }}/go/bin
defaults:
run:
working-directory: ${{ env.GOPATH }}/src/github.com/rotationalio/confire
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Checkout Code
uses: actions/checkout@v3
with:
path: ${{ env.GOPATH }}/src/github.com/rotationalio/confire
- name: Install Staticcheck
run: go install honnef.co/go/tools/cmd/[email protected]
- name: Lint Go Code
run: staticcheck ./...
test:
name: Go Test
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
go-version: [1.18.x, 1.19.x, 1.20.x]
env:
GOPATH: ${{ github.workspace }}/go
GOBIN: ${{ github.workspace }}/go/bin
defaults:
run:
working-directory: ${{ env.GOPATH }}/src/github.com/rotationalio/confire
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Cache Speedup
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Checkout Code
uses: actions/checkout@v3
with:
path: ${{ env.GOPATH }}/src/github.com/rotationalio/confire
- name: Install Dependencies
run: |
go version
- name: Run Unit Tests
run: go test -v -coverprofile=coverage.txt -covermode=atomic --race ./...