Merge pull request #44 from fortio/shared_workflows #4
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: "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 log JSON to (colorized) text converter" | |
secrets: | |
GH_PAT: ${{ secrets.GH_PAT }} | |
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }} | |
DOCKER_USER: ${{ secrets.DOCKER_USER }} |