20 lines
318 B
YAML
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
|
|
|