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 d7ad2fe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: Continuous Integration
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
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
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
- '*'
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
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 d7ad2fe

Please sign in to comment.