2019-09-04 07:16:30 +00:00
|
|
|
name: Python package
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- develop
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- develop
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
2021-10-09 12:13:30 +00:00
|
|
|
runs-on: ubuntu-latest
|
2019-09-04 07:16:30 +00:00
|
|
|
strategy:
|
2020-02-01 10:22:02 +00:00
|
|
|
max-parallel: 4
|
2019-09-04 07:16:30 +00:00
|
|
|
matrix:
|
2022-06-04 12:56:11 +00:00
|
|
|
python-version: ['3.8', '3.9', '3.10']
|
2019-09-04 07:16:30 +00:00
|
|
|
|
|
|
|
steps:
|
2022-04-05 09:38:17 +00:00
|
|
|
- uses: actions/checkout@v3
|
2019-09-04 07:16:30 +00:00
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
2021-10-09 12:13:30 +00:00
|
|
|
uses: actions/setup-python@v2
|
2019-09-04 07:16:30 +00:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
2021-10-09 12:13:30 +00:00
|
|
|
- name: Upgrade pip
|
|
|
|
run: python -m pip install --upgrade pip
|
|
|
|
- name: Install Poetry
|
|
|
|
uses: snok/install-poetry@v1
|
|
|
|
- name: Install deps
|
|
|
|
run: poetry install
|
2019-09-04 07:16:30 +00:00
|
|
|
- name: Lint with flake8
|
|
|
|
run: |
|
|
|
|
# stop the build if there are Python syntax errors or undefined names
|
2021-10-09 12:13:30 +00:00
|
|
|
poetry run flake8 sync_ics2gcal --count --select=E9,F63,F7,F82 --show-source --statistics
|
2019-09-04 07:16:30 +00:00
|
|
|
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
|
2021-10-09 12:13:30 +00:00
|
|
|
poetry run flake8 sync_ics2gcal --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
|
2019-09-04 07:16:30 +00:00
|
|
|
- name: Test with pytest
|
2021-10-09 12:13:30 +00:00
|
|
|
run: poetry run pytest -v
|
2022-06-04 12:44:01 +00:00
|
|
|
|
|
|
|
- name: Check type annotations with mypy
|
|
|
|
run: |
|
|
|
|
mkdir mypy_report
|
2022-06-04 12:48:25 +00:00
|
|
|
poetry run mypy --pretty --html-report mypy_report/ .
|
2022-06-04 12:44:01 +00:00
|
|
|
|
2022-06-04 17:12:38 +00:00
|
|
|
- name: Check type annotations with mypy strict mode (not failing)
|
|
|
|
run: |
|
|
|
|
poetry run mypy --strict --pretty . || true
|
|
|
|
|
2022-06-04 12:44:01 +00:00
|
|
|
- name: Upload mypy report
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: mypy_report
|
|
|
|
path: mypy_report/
|