Skip to content

Bump github.com/paulmach/orb from 0.9.0 to 0.9.1 #169

Bump github.com/paulmach/orb from 0.9.0 to 0.9.1

Bump github.com/paulmach/orb from 0.9.0 to 0.9.1 #169

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.18", "1.19", "1.20"]
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Install test related deps
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin latest
- name: Lint
run: golangci-lint run ./...
- name: Build
run: |
go build
- name: Test
run: |
go test ./...