We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd93f5c commit 5c80602Copy full SHA for 5c80602
1 file changed
.github/workflows/main.yml
@@ -4,14 +4,15 @@ env:
4
IMAGE_NAME: student_service
5
REPO_NAME:
6
7
+
8
jobs:
9
build:
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v2
13
- name: Build docker
14
run: |
- docker build ./one -t casperdejong02/$IMAGE_NAME
15
+ docker build . -t casperdejong02/$IMAGE_NAME
16
- name: run docker
17
18
docker run -d -p 8080:8080 casperdejong02/$IMAGE_NAME:latest && \
@@ -20,7 +21,7 @@ jobs:
20
21
- name: "Check files existence"
22
uses: andstor/file-existence-action@v2
23
with:
- files: "one/postman/collection.json,one/postman/environment.json"
24
+ files: "one/postman/collection.json,postman/environment.json"
25
fail: true
26
27
- name: Run API Tests
0 commit comments