github action to test
This commit is contained in:
parent
1e6f063f3f
commit
aab016432e
45
.github/workflows/test.yml
vendored
Normal file
45
.github/workflows/test.yml
vendored
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
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
|
Loading…
Reference in New Issue
Block a user