The game server sends the reward amount to the clients. #905
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: Repository health | |
| on: | |
| push: | |
| pull_request: | |
| concurrency: | |
| group: > | |
| ${{github.workflow }} | |
| -${{ github.event.pull_request.number || github.ref}} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: "ubuntu:25.10" | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: > | |
| apt-get update ; | |
| apt-get install --yes black clang-format shellcheck yamllint ; | |
| - name: Check repository state | |
| run: ./ci/repository-health.sh |