Skip to content

Commit 4581a8a

Browse files
authored
Add PR validation workflow
1 parent e536146 commit 4581a8a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: PR Validation
2+
3+
on:
4+
pull_request:
5+
branches: [ "master", "develop" ]
6+
7+
jobs:
8+
build:
9+
name: Build
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v4
14+
with:
15+
ref: ${{ github.sha }}
16+
fetch-depth: 0
17+
18+
- name: Build the Docker image
19+
run: |
20+
docker build . --file ./AiHelpBot/Dockerfile

0 commit comments

Comments
 (0)