Skip to content

chore: adjust for the Scenario 7.0 API #54

chore: adjust for the Scenario 7.0 API

chore: adjust for the Scenario 7.0 API #54

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
jobs:
linting:
name: Linting
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
run: python -m pip install tox
- name: Run tests
run: tox -vve lint
unit-test:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
run: python -m pip install tox
- name: Run tests
run: tox -vve unit