Files
Vipmrp/.gitea/workflows/ci.yaml
T
Workflow config file is invalid. Please check your config file: model.ReadWorkflow: yaml: unmarshal errors: line 11: cannot unmarshal !!str `fetch-d...` into map[string]string
2026-05-07 14:57:36 +03:00

21 lines
371 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
with:
fetch-depth:1
- name: Test Backend
run: |
cd backend
go test ./... -v
- name: Build Full Stack
run: |
docker compose build