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 14:38:29 +03:00

20 lines
318 B
YAML

name: MRP CI/CD
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Test Backend
run: |
cd backend
go test ./... -v
-name: Build Full Stack Image
run: |
docker compose build