Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/fix GitHub actions #293

Merged
merged 2 commits into from
Jul 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
LAM_COUNTER_API_BASE_URL: https://tie.digitraffic.fi/api/tms/v1/history

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python 3.10.0
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: 3.10.0
- name: Install required Ubuntu packages
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
pip install coverage
coverage report -m
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
# Majority of the tests require database
services:
# Label used to access the service container
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ pytz==2021.3
# celery
# django-timezone-field
# pandas
pyyaml==5.4.1
pyyaml==5.3.1
# via
# django-munigeo
# drf-spectacular
Expand Down