Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

Merge pull request #58 from lensesio/fix/exception_handling #102

Merge pull request #58 from lensesio/fix/exception_handling

Merge pull request #58 from lensesio/fix/exception_handling #102

name: Tox Workflow Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.8]
steps:
- uses: actions/checkout@v1
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other packages
run: pip install tox
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Start Lenses Box
run: make docker
env:
DECRYPT_PSK: ${{ secrets.DECRYPT_PSK }}
- name: Run Tox
run: make test
- name: Clean dockers
run: make docker_clean