Skip to content

Commit

Permalink
updated versions on actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklise committed Nov 18, 2023
1 parent 8e65fb6 commit 5bad82f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ jobs:
# os: [ubuntu-latest]
# steps:
# - name: Set up Python
# uses: actions/setup-python@v2
# uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}
# - name: Download wheel
# uses: actions/download-artifact@v2
# uses: actions/download-artifact@v3
# with:
# name: wheel
# - name: Install chama
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
env:
COVERAGE_FILE: .coverage.${{ matrix.python-version }}.${{ matrix.os }}
- name: Save coverage
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: coverage
path: .coverage.${{ matrix.python-version }}.${{ matrix.os }}
Expand All @@ -116,7 +116,7 @@ jobs:
pip install coveralls
python setup.py develop
- name: Download coverage artifacts from test matrix
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: coverage
- name: Setup coverage and combine reports
Expand All @@ -135,12 +135,12 @@ jobs:
coverage json --pretty-print
coverage html --show-contexts
- name: Save coverage JSON
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: coverage
path: coverage.json
- name: Save coverage html
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: coverage
path: htmlcov
Expand All @@ -151,7 +151,7 @@ jobs:
continue-on-error: true
steps:
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.9
- uses: actions/checkout@v2
Expand All @@ -162,7 +162,7 @@ jobs:
pip install -r requirements.txt
python setup.py develop
- name: Download coverage artifacts from test matrix
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: coverage
- name: Setup coverage and combine reports
Expand Down

0 comments on commit 5bad82f

Please sign in to comment.