add CI/CD to code

This commit is contained in:
2026-05-07 14:38:29 +03:00
parent 679c8286ed
commit 627c6baaab
2 changed files with 19 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
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