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 3aa0c07 commit 0a68c57Copy full SHA for 0a68c57
.github/workflows/ci.yml
@@ -33,5 +33,10 @@ jobs:
33
- name: Build Docker Image
34
run: docker build -t classifier .
35
36
- - name: Run Tests in Docker Container
37
- run: docker run -it --rm -v "$(pwd)"/input_raw:/usr/src/app/input_raw -v "$(pwd)"/output:/usr/src/app/output -e INPUT_DIR=input_raw classifier
+ - name: Run Pipeline in Docker Container
+ run: |
38
+ docker run --rm \
39
+ -v "${{ runner.os }}/input_raw:/usr/src/app/input_raw" \
40
+ -v "${{ runner.os }}/output:/usr/src/app/output" \
41
+ -e INPUT_DIR=input_raw \
42
+ classifier
0 commit comments