Skip to content

feat(server): create a minimal server #15

feat(server): create a minimal server

feat(server): create a minimal server #15

Workflow file for this run

# SPDX-License-Identifier: AGPL-3.0-or-later
#
# SPDX-FileCopyrightText: 2024 Tristan Partin <tristan@partin.io>
name: Build Server
on:
pull_request:
types: [opened, synchronize, reopened]
paths:
- "**.go"
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
build-server:
runs-on: ubuntu-latest
steps:
- name: Checkout splitsies
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
check-latest: true
go-version: "1.22"
- name: Install Just
run: |
curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh |
bash -s -- --to /usr/local/bin
- name: Build the Server
run: |
just debug