Skip to content

ZIP-91 Saving webhook events recording.paused/resumed/started/stopped to a db #459

ZIP-91 Saving webhook events recording.paused/resumed/started/stopped to a db

ZIP-91 Saving webhook events recording.paused/resumed/started/stopped to a db #459

Workflow file for this run

name: Tests
on:
workflow_dispatch:
push:
pull_request:
env:
AWS_DEFAULT_REGION: us-east-1
jobs:
unit-tests:
runs-on: ubuntu-20.04
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: 3.8.16
cache: 'pip'
cache-dependency-path: './requirements/dev.txt'
- name: Install libraries
run: pip install -r requirements/dev.txt
- name: Run tests
run: tox
lint-check:
runs-on: ubuntu-20.04
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.8.16
cache: 'pip'
cache-dependency-path: './requirements/dev.txt'
- name: Install libraries
run: pip install -r requirements/dev.txt
- name: lint
run: flake8
- name: format
run: black --check .