We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38cee15 commit 1c82283Copy full SHA for 1c82283
.github/workflows/pylint.yml
@@ -26,13 +26,10 @@ jobs:
26
- name: Execute Test Cases
27
run: |
28
pytest -v --junit-xml=tests.xml --cov-report=xml --cov=app/core
29
- - uses: ochanje210/s3-upload-action@master
+ - uses: actions/upload-artifact@v2
30
with:
31
- AWS_ACCESS_KEY_ID: ${{ secrets.AWS_KEY_ID }}
32
- AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY}}
33
- AWS_S3_BUCKET: artifactsmaven
34
- SOURCE_DIR: 'app'
35
- DEST_DIR: 'app'
+ name: TestArtifacts
+ path: "tests.xml"
36
- name: Execute Lint
37
38
score=10
0 commit comments