cleanup CI & deps #65
Workflow file for this run
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
name: ci | |
on: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
inputs: | |
proto_ref: | |
proto_sha: | |
push: | |
branches: | |
- main | |
- v* | |
# Publish `v1.2.3` tags as releases. | |
tags: | |
- v* | |
# Run tests for PRs | |
pull_request: | |
env: | |
VAULT_ADDR: https://vault.eng.aserto.com/ | |
BUF_REPO: "buf.build/aserto-dev/authorizer" | |
BUF_VERSION: "1.30.0" | |
BUF_BETA_SUPPRESS_WARNINGS: 1 | |
GO_VERSION: "1.22" | |
GO_LANGCI_LINT_VERSION: "v1.56.2" | |
GO_TESTSUM_VERSION: "1.11.0" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Read Configuration | |
uses: hashicorp/vault-action@v3 | |
id: vault | |
with: | |
url: ${{ env.VAULT_ADDR }} | |
token: ${{ secrets.VAULT_TOKEN }} | |
secrets: | | |
kv/data/buf.build "ASERTO_BUF_TOKEN" | ASERTO_BUF_TOKEN; | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- | |
name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- | |
name: Setup buf | |
uses: bufbuild/buf-setup-action@v1 | |
with: | |
version: ${{ env.BUF_VERSION }} | |
github_token: ${{ github.token }} | |
buf_user: ${{ steps.vault.outputs.BUF_USER }} | |
buf_api_token: ${{ steps.vault.outputs.BUF_TOKEN}} | |
- | |
name: Delete generated code | |
run: | | |
rm -rf ./aserto | |
- | |
name: Get latest version tag from Buf Registry | |
id: buf-latest | |
run: | | |
echo "VERSION=$(buf beta registry tag list buf.build/aserto-dev/authorizer --format json --reverse | jq -r '.results[0].name')" >> "$GITHUB_OUTPUT" | |
- | |
name: Buf Generate | |
run: | | |
echo "${{ env.BUF_REPO }}:${{ steps.buf-latest.outputs.VERSION }}" | |
buf mod update . | |
buf generate ${{ env.BUF_REPO }}:${{ steps.buf-latest.outputs.VERSION }} | |
- | |
name: Lint | |
uses: golangci/golangci-lint-action@v4 | |
with: | |
version: ${{ env.GO_LANGCI_LINT_VERSION }} | |
args: --timeout=30m | |
- | |
name: Test Setup | |
uses: gertd/[email protected] | |
with: | |
gotestsum_version: ${{ env.GO_TESTSUM_VERSION }} | |
- | |
name: Test | |
run: | | |
gotestsum --format short-verbose -- -count=1 -parallel=1 -v -timeout=240s -coverprofile=cover.out -coverpkg=./... ./... | |
- | |
name: Commit changes | |
if: github.event_name == 'workflow_dispatch' | |
uses: EndBug/add-and-commit@v9 | |
with: | |
default_author: github_actions | |
add: 'aserto' |