Files
MeganJohns/.gitea/workflows/server.yml
Lucas Jensen 8b6378fe75
Some checks failed
Client Build / build (21.x) (pull_request) Failing after 17s
Server Build / build (pull_request) Successful in 45s
further build step tweaks
2026-01-01 20:51:22 -08:00

35 lines
627 B
YAML

name: Server Build
on:
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python 3.14
uses: actions/setup-python@v3
with:
python-version: "3.14"
- name: Install poetry
uses: abatilo/actions-poetry@v2
- name: Install dependencies
working-directory: server
run: |
poetry install
- name: Lint with black
working-directory: server
run: |
poetry run black --check .