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:
|
2021-10-21 07:18:39 +00:00
|
|
|
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
|
2019-09-04 07:16:30 +00:00
|
|
|
|
|
|
|
steps:
|
2021-10-09 12:13:30 +00:00
|
|
|
- uses: actions/checkout@v2
|
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: Load cached Poetry installation
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/.local
|
|
|
|
key: poetry-0
|
|
|
|
- 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
|