docs: document movement bootstrap slice #35
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: ci | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| test-and-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.26' | |
| cache: true | |
| - name: Show Go version | |
| run: go version | |
| - name: Run tests | |
| run: go test ./... | |
| - name: Build daemons | |
| run: | | |
| go build ./cmd/authd | |
| go build ./cmd/gamed | |
| - name: Validate Docker runtime image | |
| run: docker build --target runtime -t go-metin2-server:ci . | |
| - name: Validate Docker debug image | |
| run: docker build --target runtime-debug -t go-metin2-server:debug-ci . |