diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml new file mode 100644 index 0000000..5dee748 --- /dev/null +++ b/.gitea/workflows/ci.yaml @@ -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 + diff --git a/backend/hello.txt b/backend/hello.txt deleted file mode 100644 index e69de29..0000000