Pretty up previous TFC runs URLs list via markdown tables instead of just a list of URLs #75
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: go ci | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/on_pull_request_go.yaml' | |
- 'Earthfile' | |
- '*/**.go' | |
- '*.go' | |
- 'go.mod' | |
- 'go.sum' | |
jobs: | |
ci-golang: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: wistia/parse-tool-versions@v1.0 | |
- uses: earthly/actions-setup@v1 | |
with: { version: "v${{ env.EARTHLY_TOOL_VERSION }}" } | |
- run: earthly +ci-golang --GOLANG_VERSION=${{ env.GOLANG_TOOL_VERSION }} |