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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |