Skip to content

Commit

Permalink
Update tests.yml
Browse files Browse the repository at this point in the history
Updated artifact actions to use v4
  • Loading branch information
myrmarachne authored Dec 11, 2024
1 parent f56a2d7 commit aef63ca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
coverage run -m pytest qf_lib/tests/unit_tests
coverage xml -o unit_tests.xml
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: unit_tests
path: unit_tests.xml
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
coverage run -a -m pytest qf_lib/tests/integration_tests/data_providers
coverage xml -o data_providers_tests.xml
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: data_providers_tests
path: data_providers_tests.xml
Expand All @@ -118,11 +118,11 @@ jobs:
with:
name: unit_tests
- name: Download artifacts data_providers_tests
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: data_providers_tests
- name: Download backtesting_tests artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: backtesting_tests
- name: Set up Python
Expand Down

0 comments on commit aef63ca

Please sign in to comment.