rrl/.github/workflows/test.yml
2020-10-12 17:49:31 -04:00

48 lines
1.2 KiB
YAML

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- 6379:6379
steps:
# Python & dependency installation
- uses: actions/checkout@v2
- name: setup Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: install Poetry
uses: dschep/install-poetry-action@v1.3
- name: cache Poetry virtualenv
uses: actions/cache@v2
id: cache
with:
path: ~/.virtualenvs/
key: poetry-${{ hashFiles('**/poetry.lock') }}
restore-keys: |
poetry-${{ hashFiles('**/poetry.lock') }}
- name: set poetry config path
run: poetry config virtualenvs.path ~/.virtualenvs
- name: install dependencies
run: poetry install
# if: steps.cache.outputs.cache-hit != 'true'
- name: lint with mypy
run: poetry run mypy --disallow-untyped-defs rrl.py
- name: lint with flake8
run: poetry run flake8 . --show-source --statistics --ignore=E203,E501
- name: pytest
run: poetry run pytest