Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/back-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,18 @@ on:
push:
branches:
- main
paths:
- 'back/**'
- '.github/workflows/back-build.yaml'
- '.github/actions/setup-go/**'
- 'Makefile'
pull_request:
types: [opened, synchronize, reopened]
paths:
- 'back/**'
- '.github/workflows/back-build.yaml'
- '.github/actions/setup-go/**'
- 'Makefile'
workflow_dispatch:

env:
Expand Down
35 changes: 35 additions & 0 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Docker Build
Comment thread
GuillaumeKESTEMAN marked this conversation as resolved.

on:
push:
branches:
- main
paths:
- 'docker-compose.dev.yml'
- 'docker/**'
- 'front/Dockerfile'
- 'back/Dockerfile'
- '.github/workflows/docker-build.yml'
pull_request:
types: [opened, synchronize, reopened]
paths:
- 'docker-compose.dev.yml'
- 'docker/**'
- 'front/Dockerfile'
- 'back/Dockerfile'
- '.github/workflows/docker-build.yml'
workflow_dispatch:

jobs:
build:
name: Development Docker Compose Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Comment thread
GuillaumeKESTEMAN marked this conversation as resolved.

- name: Build Development Docker Compose
run: docker compose -f docker-compose.dev.yml build
Comment thread
GuillaumeKESTEMAN marked this conversation as resolved.
10 changes: 10 additions & 0 deletions .github/workflows/front-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,18 @@ on:
push:
branches:
- main
paths:
- 'front/**'
- '.github/workflows/front-build.yaml'
- '.github/actions/setup-node/**'
- 'Makefile'
pull_request:
types: [opened, synchronize, reopened]
paths:
- 'front/**'
- '.github/workflows/front-build.yaml'
- '.github/actions/setup-node/**'
- 'Makefile'
workflow_dispatch:

env:
Expand Down
Loading