name: Code Check on: workflow_dispatch: inputs: run_lint: description: "Run linters for Go and Flutter" required: true type: boolean default: true run_backend_tests: description: "Run backend Go tests" required: true type: boolean default: true run_frontend_tests: description: "Run frontend Flutter tests" required: true type: boolean default: true jobs: lint: if: ${{ inputs.run_lint == true }} runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 - name: Setup Go uses: actions/setup-go@v5 with: go-version: "1.25" cache-dependency-path: backend/go.sum - name: Setup Flutter uses: subosito/flutter-action@v2 with: channel: "stable" cache: true - name: Lint Go backend uses: golangci/golangci-lint-action@v6 with: version: v1.59 working-directory: backend args: --enable-only=gofmt,gofumpt - name: Analyze Flutter frontend run: | cd frontend flutter analyze --no-fatal-warnings --no-fatal-infos backend-tests: needs: lint if: ${{ inputs.run_backend_tests == true }} runs-on: ubuntu-latest services: redis: image: redis:7-alpine options: > --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5 clickhouse: image: clickhouse/clickhouse-server:24.6 options: > --health-cmd "wget -qO- 'http://localhost:8123/ping'" --health-interval 10s --health-timeout 5s --health-retries 5 env: REDIS_ADDR: redis:6379 CLICKHOUSE_HOST: clickhouse CLICKHOUSE_PORT_NATIVE: 9000 steps: - name: Checkout code uses: actions/checkout@v4 - name: Setup Go uses: actions/setup-go@v5 with: go-version: "1.25" cache-dependency-path: backend/go.sum - name: Run backend tests run: | cd backend go test -v ./... frontend-tests: needs: lint if: ${{ inputs.run_frontend_tests == true }} runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 - name: Setup Flutter uses: subosito/flutter-action@v2 with: channel: "stable" cache: true - name: Run frontend tests run: | cd frontend if [ -d test ]; then flutter test else echo "No frontend tests: skipping (test/ directory not found)." fi