Skip to content

Commit

Permalink
- updated cicd files
Browse files Browse the repository at this point in the history
  • Loading branch information
Sid Mohan authored and Sid Mohan committed Aug 6, 2024
1 parent c76a4c8 commit 3326921
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
16 changes: 15 additions & 1 deletion .github/workflows/feature-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,20 @@ jobs:
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
# this might remove tools that are actually needed,
# if set to "true" but frees about 6 GB
tool-cache: false
# all of these default to true, but feel free to set to
# "false" if necessary for your workflow
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: true
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand All @@ -57,7 +71,7 @@ jobs:
run: |
sudo apt-get clean
- name: Run Tests with tox
run: tox -- --cov datafog --cov-report xml --cov-report term --codeblocks
run: tox -- --cov datafog --cov-report xml --cov-report term -v -s --cov-report=term-missing
- name: Submit to Codecov
uses: codecov/codecov-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
pip install -e .
pip install tox just pre-commit
- name: Run Tests with tox
run: tox -- --cov datafog --cov-report xml --cov-report term --codeblocks
run: tox -- --cov datafog --cov-report xml --cov-report term -v -s --cov-report=term-missing
- name: Submit to Codecov
uses: codecov/codecov-action@v3
with:
Expand Down

0 comments on commit 3326921

Please sign in to comment.