40 lines
859 B
YAML
40 lines
859 B
YAML
name: Run tests on pushes and on PRs
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
run_tests:
|
|
name: Run tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: "3.6"
|
|
cache: 'pipenv'
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: "10"
|
|
cache: 'npm'
|
|
|
|
- name: Install pipenv and python dependencies
|
|
run: |
|
|
pip install -U pip pipenv
|
|
pipenv sync -d
|
|
- name: Install node dependencies
|
|
run: npm install
|
|
|
|
- name: Start Redis
|
|
run: docker run --name redis --publish 6379:6379 --detach redis
|
|
|
|
|
|
- name: Run tests with pytest
|
|
run: pipenv run pytest --cov=.
|
|
|
|
- uses: codecov/codecov-action@v2
|