Skip to content

chore: limit Scenario 6 to use ops 2.12-2.16 #408

chore: limit Scenario 6 to use ops 2.12-2.16

chore: limit Scenario 6 to use ops 2.12-2.16 #408

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.10"
- name: Install dependencies
run: python -m pip install tox
- name: Run linter
run: tox -vve lint
- name: Run static checks
run: tox -vve static
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.10"
- name: Install dependencies
run: python -m pip install tox
- name: Run unit tests
run: tox -vve unit