Skip to content

PrimitivesV2 schemas #53

PrimitivesV2 schemas

PrimitivesV2 schemas #53

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
tests:
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Deps
run: python -m pip install -r requirements-dev.txt
- name: Install and Run Tests
run: python -m unittest discover -s ./tests -t ./tests -v
lint:
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Deps
run: python -m pip install flake8
- name: Install and Run Tests
run: flake8 ./tests