Files
Vipmrp/.gitea/workflows/ci.yaml
T
Deforest6342 f6b9056d7f
MRP Full Stack CI / validate-and-build (push) Has been cancelled
remake
2026-05-07 15:26:44 +03:00

24 lines
436 B
YAML

name: MRP Full Stack CI
on: [push]
jobs:
validate-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Test Backend
run: |
cd backend
go test ./... -v
- name: Build Full Stack
run: |
docker compose build