|
@@ -19,14 +19,11 @@ jobs:
|
|
- 3.8
|
|
- 3.8
|
|
steps:
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: actions/checkout@v1
|
|
- - &setup_python
|
|
+ - uses: actions/setup-python@v1
|
|
- uses: actions/setup-python@v1
|
|
|
|
with:
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
python-version: ${{ matrix.python-version }}
|
|
- - &pip_install_pipenv
|
|
+ - run: pip install --upgrade pipenv>=2018.10.9
|
|
- run: pip install --upgrade pipenv>=2018.10.9
|
|
+ - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
|
|
- - &pipenv_install
|
|
|
|
- run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
|
|
|
|
env:
|
|
env:
|
|
PYTHON_VERSION: ${{ matrix.python-version }}
|
|
PYTHON_VERSION: ${{ matrix.python-version }}
|
|
- run: pipenv graph
|
|
- run: pipenv graph
|
|
@@ -42,9 +39,13 @@ jobs:
|
|
- 3.8
|
|
- 3.8
|
|
steps:
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: actions/checkout@v1
|
|
- - *setup_python
|
|
+ - uses: actions/setup-python@v1
|
|
- - *pip_install_pipenv
|
|
+ with:
|
|
- - *pipenv_install
|
|
+ python-version: ${{ matrix.python-version }}
|
|
|
|
+ - run: pip install --upgrade pipenv>=2018.10.9
|
|
|
|
+ - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
|
|
|
|
+ env:
|
|
|
|
+ PYTHON_VERSION: ${{ matrix.python-version }}
|
|
- run: pipenv graph
|
|
- run: pipenv graph
|
|
- run: pipenv run pytest --cov=ical2vdir --cov-report=term-missing --cov-fail-under=100
|
|
- run: pipenv run pytest --cov=ical2vdir --cov-report=term-missing --cov-fail-under=100
|
|
- run: pipenv run pylint --load-plugins=pylint_import_requirements ical2vdir
|
|
- run: pipenv run pylint --load-plugins=pylint_import_requirements ical2vdir
|