-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use shared workflows and linter/releaser configs (#139)
* first attempt at shared workflows * fix up path * ignore downloaded file so goreleaser hopefully doesn't complain * delete the original .goreleaser.yaml * add gochecks * .golangci.yml is now downloaded from workflows/ * fix lints
- Loading branch information
Showing
8 changed files
with
29 additions
and
391 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: "Shared cli fortio workflows" | ||
on: | ||
push: | ||
branches: [ main ] | ||
tags: | ||
# so a vX.Y.Z-test1 doesn't trigger build | ||
- 'v[0-9]+.[0-9]+.[0-9]+' | ||
- 'v[0-9]+.[0-9]+.[0-9]+-pre*' | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
call-gochecks: | ||
uses: fortio/workflows/.github/workflows/gochecks.yml@main | ||
call-codecov: | ||
uses: fortio/workflows/.github/workflows/codecov.yml@main | ||
call-codeql: | ||
uses: fortio/workflows/.github/workflows/codeql-analysis.yml@main | ||
call-releaser: | ||
uses: fortio/workflows/.github/workflows/releaser.yml@main | ||
with: | ||
description: "Fortio multi curl" | ||
secrets: | ||
GH_PAT: ${{ secrets.GH_PAT }} | ||
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }} | ||
DOCKER_USER: ${{ secrets.DOCKER_USER }} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
coverage.out | ||
.goreleaser.yaml | ||
.golangci.yml |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.