docs: update README #259
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: Checks | |
on: [pull_request] | |
jobs: | |
checks: | |
name: Basic checks | |
permissions: | |
checks: write | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: black-desk/checks@master | |
build-and-test: | |
name: Build & test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
cache: true | |
cache-dependency-path: ${{github.workspace}}/go.sum | |
- name: Upgrade | |
run: | | |
sudo apt update && | |
sudo apt install systemd util-linux | |
- name: Build & test (debug mode) | |
run: | | |
make GO_TAGS=debug | |
make GO_TAGS=debug test | |
- name: Build & test | |
run: | | |
make | |
make test | |
- name: Coverage report | |
run: | | |
export COVERAGE_REPORT=/tmp/io.github.black-desk.cgtproxy-test/coverage.txt && | |
echo '```' > $GITHUB_STEP_SUMMARY && | |
make COVERAGE_REPORT=$COVERAGE_REPORT test-coverage-report && | |
cat $COVERAGE_REPORT >> $GITHUB_STEP_SUMMARY && | |
echo '```' >> $GITHUB_STEP_SUMMARY | |
pass: | |
name: Pass | |
if: always() | |
needs: | |
- checks | |
- build-and-test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Decide whether the needed jobs succeeded or failed | |
uses: re-actors/alls-green@release/v1 | |
with: | |
jobs: ${{ toJSON(needs) }} |