1
0
mirror of https://github.com/b4tman/sync_ics2gcal synced 2024-09-21 08:58:03 +00:00
sync_ics2gcal/.github/workflows/pythonpackage.yml

47 lines
1.2 KiB
YAML
Raw Normal View History

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-02-11 11:29:25 +00:00
python-version: ['3.7', '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: Load cached Poetry installation
2022-04-05 09:37:02 +00:00
uses: actions/cache@v3.0.1
2021-10-09 12:13:30 +00:00
with:
path: ~/.local
2022-04-05 09:40:40 +00:00
key: poetry-1
2021-10-09 12:13:30 +00:00
- 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