46 lines
1.1 KiB
YAML
46 lines
1.1 KiB
YAML
|
name: Test Scripts
|
||
|
|
||
|
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 flake8
|
||
|
run: poetry run flake8 . --show-source --statistics --ignore=E203,E501
|
||
|
- name: pytest
|
||
|
run: poetry run pytest
|