Skip to content

Build

Build #782

Workflow file for this run

name: Build
on:
push:
schedule:
# runs a new build everyday
- cron: 0 0 * * *
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-latest]
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: '**/requirements/test.txt'
- name: Install dependencies
run: pip install -r requirements/test.txt
- name: Style check
run: |
python -m isort --profile black --check . &&
python -m black --check .
- name: Tests
run: |
python -m bandit -c bandit.yml -r .
python -m pytest