Skip to content

docs: document movement bootstrap slice #35

docs: document movement bootstrap slice

docs: document movement bootstrap slice #35

Workflow file for this run

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 .