Skip to content

Commit

Permalink
Fix build actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mrgambal committed Apr 13, 2021
1 parent fda1c1b commit 767a332
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/matrix-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ jobs:
- 27017:27017

steps:
- uses: actions/checkout@v2.2.0
- uses: actions/checkout@v2.3.4
with:
fetch-depth: 1

- uses: actions/cache@v2.0.0
- uses: actions/cache@v2.1.5
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2.0.1
uses: actions/setup-python@v2.2.2
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -42,7 +42,7 @@ jobs:
run: coverage run --source vulyk setup.py test;

- name: Test & publish code coverage
uses: paambaati/codeclimate-action@v2.6.0
uses: paambaati/codeclimate-action@v2.7.5
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ blinker==1.4
bz2file==0.98
click==7.1.2
cssmin==0.2.0
email-validator==1.1.1
email-validator==1.1.2
Flask-Admin==1.5.6
Flask-Assets==2.0
Flask-Collect==1.3.2
Expand All @@ -20,7 +20,7 @@ rjsmin==1.1.0
social-auth-app-flask-mongoengine<2.0.0
social-auth-app-flask<2.0.0
social-auth-core==3.3.3
Sphinx==3.0.4
Sphinx==3.5.4
veryprettytable==0.8.1
webassets==2.0
Werkzeug==1.0.1
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ classifiers =
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8

[options]
zip_safe = False
Expand Down

0 comments on commit 767a332

Please sign in to comment.