feat: simplify docker-compose experience #620
Workflow file for this run
This file contains hidden or 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 - test | |
on: | |
push: | |
branches: | |
- "!release" | |
paths: | |
- "diode-server/**" | |
- "!diode-server/docker/**" | |
pull_request: | |
paths: | |
- "diode-server/**" | |
- "!diode-server/docker/**" | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: false | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
go-test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
defaults: | |
run: | |
working-directory: diode-server | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23.x' | |
check-latest: true | |
- name: Run go build | |
run: go build ./... | |
- name: Install additional dependencies | |
run: | | |
go install github.com/mfridman/[email protected] | |
- name: Run go test | |
id: go-test | |
run: | | |
make test-coverage | |
echo 'coverage-report<<EOF' >> $GITHUB_OUTPUT | |
cat .coverage/test-report.md >> $GITHUB_OUTPUT | |
echo 'EOF' >> $GITHUB_OUTPUT | |
echo "coverage-total=$(cat .coverage/coverage.txt)" >> $GITHUB_OUTPUT | |
- name: Find comment | |
uses: peter-evans/find-comment@3eae4d37986fb5a8592848f6a574fdf654e61f9e # v3 | |
id: existing-comment | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
comment-author: 'github-actions[bot]' | |
body-includes: Go test coverage | |
- name: Post comment | |
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4 | |
with: | |
comment-id: ${{ steps.existing-comment.outputs.comment-id }} | |
issue-number: ${{ github.event.pull_request.number }} | |
body: | | |
Go test coverage | |
${{ steps.go-test.outputs.coverage-report }} | |
Total coverage: ${{ steps.go-test.outputs.coverage-total }}% | |
edit-mode: replace |