mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2026-01-03 21:39:36 -05:00
* build: adds local check for website links * build(make): adds website lint and setup target * docs: fix spellings and hcl blocks * fix(make): phony cmd for missing targets * chore: renames website link check workflow * fix: missing workflow path * build(make): adds golangci-lint target and tool * ci: adds website lint workflow * docs(contributing): adds linter runs * chore: improves naming of workflow jobs * ci: moves website lint job * chore: switches markdown checker imagee to ghcr.io/tcort/markdown-link-check:stable
32 lines
608 B
YAML
32 lines
608 B
YAML
---
|
|
name: Compile Binaries
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- "release/**"
|
|
pull_request:
|
|
types: ['opened', 'synchronize']
|
|
paths:
|
|
- '**.go'
|
|
- 'vendor/**'
|
|
- '.github/workflows/**'
|
|
|
|
env:
|
|
GO_VERSION: "1.15"
|
|
GOPROXY: https://gocenter.io,https://proxy.golang.org,direct
|
|
|
|
jobs:
|
|
compile:
|
|
runs-on: ubuntu-20.04
|
|
strategy:
|
|
fail-fast: true
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-go@v2
|
|
with:
|
|
go-version: '1.15'
|
|
- run: cat /etc/issue
|
|
- run: bash scripts/gogetcookie.sh
|
|
- run: make compile
|
|
|