Files
Vipmrp/.gitea/workflows/ci.yaml
T
Workflow config file is invalid. Please check your config file: model.ReadWorkflow: yaml: line 7: did not find expected '-' indicator
2026-05-07 15:22:45 +03:00

25 lines
445 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: Set up Go
uses: https://github.com/actions-go
with:
go-version: '1.23'
- name: Test Backend
run: |
cd backend
go test ./... -v
- name: Build Full Stack
run: |
docker compose build