Skip to content

Started working on github actions #1

Started working on github actions

Started working on github actions #1

Workflow file for this run

name: Build Docker Images
on:
pull_request:
branches:
- sprint-release
- main
paths:
- "backend/**"
- "frontend/**"
push:
branches:
- sprint-release
- main
paths:
- "backend/**"
- "frontend/**"
jobs:
build:
name: Build the Docker Image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build Image
run: docker compose build --pull