Skip to content

feat(server): create a minimal server #10

feat(server): create a minimal server

feat(server): create a minimal server #10

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
container:
image: docker.io/fedora:40
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: |
dnf install --assumeyes --setopt=install_weak_deps=False just
- name: Build the Server
run: |
just debug