Skip to content

chore(deps): bump docker/login-action from 1 to 3 #127

chore(deps): bump docker/login-action from 1 to 3

chore(deps): bump docker/login-action from 1 to 3 #127

Workflow file for this run

# GitHub Actions Workflow definition for validating Pull Requests
name: pr-validation
on: [pull_request]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Unshallow
run: git fetch --prune --unshallow
- name: Setup Go
uses: actions/[email protected]
with:
go-version: '1.15'
- name: Run GoReleaser
uses: goreleaser/[email protected]
with:
version: v0.143.0
args: release --snapshot --skip-publish --rm-dist
unit-tests:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/[email protected]
with:
go-version: '1.15'
- name: Run Unit Tests
run: go test -v ./...
linters:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Run linters
uses: golangci/golangci-lint-action@v2
with:
version: v1.37
args: --timeout=5m