Skip to content

Commit

Permalink
add workflow dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
uidl9955 committed Nov 15, 2023
1 parent 1ea89d1 commit 5e73dde
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,6 @@ jobs:
- name: Run tests
run: tox

- name: Upload packages

uses: actions/upload-artifact@v3
with:
name: github_publish_package_${{matrix.os}}
path: ./dist/*.*

- name: Upload reports

uses: actions/upload-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
pip install flake8 pytest pytest-html pytest-html-report
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
python -m pip install flake8 pytest pytest-html pytest-html-report
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: github_publish_wheel
path: ./dist/*.whl

- uses: actions/upload-artifact@v3
with:
name: github_publish_tar_gz
path: ./dist/*.tar.gz

0 comments on commit 5e73dde

Please sign in to comment.