Skip to content

Commit

Permalink
Upgrade GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalibo committed Mar 31, 2024
1 parent 94c40b4 commit 949a0e0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: '3.6'
- name: Install dependencies
Expand All @@ -16,4 +16,4 @@ jobs:
pip install -r requirements.txt
- name: Run unit tests
run: |
PYTHONPATH='.' python -m pytest tests/ -p no:cacheprovider
PYTHONPATH='.' python -m pytest tests/ -p no:cacheprovider -v
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: '3.6'
- name: Install dependencies
Expand Down

0 comments on commit 949a0e0

Please sign in to comment.