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 b279cc0 commit 08fbe10Copy full SHA for 08fbe10
.github/workflows/ci.yml
@@ -40,8 +40,5 @@ jobs:
40
- name: Checkout Code
41
uses: actions/checkout@v3
42
43
- - name: Docker Run
44
- run: docker run --rm classifier
45
-
46
- - name: Run Tests
47
- run: make test
+ - name: Run Tests in Docker Container
+ run: docker run --rm classifier make test
Dockerfile
@@ -31,9 +31,6 @@ RUN pip3 install -r requirements.txt
31
# Set the working directory
32
WORKDIR /usr/src/app
33
34
-# Run the tests to ensure everything is working correctly
35
-#RUN make test
36
37
# Set the entrypoint to run the pipeline via Makefile.run
38
ENTRYPOINT ["make", "-f", "Makefile.run"]
39
0 commit comments