Skip to content

Add config file

Add config file #26

Workflow file for this run

name: Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python: ["3.7"]
steps:
- uses: actions/checkout@v1
- name: Cache eggs
uses: actions/cache@v1
with:
path: eggs
key: ${{ runner.OS }}-build-python${{ matrix.python }}
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Install buildout
run: |
buildout -c development.cfg -N -t 3 code-analysis:return-status-codes=True
- name: Code analysis
run: |
bin/code-analysis
- name: Run tests
run: |
make test