We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e536146 commit 4581a8aCopy full SHA for 4581a8a
.github/workflows/pr-validation.yaml
@@ -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