Skip to content

update schematic

update schematic #143

Workflow file for this run

name: Coverage
on:
push:
branches:
- main
pull_request:
branches:
- '**'
jobs:
build-and-test:
name: coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
architecture: x64
- name: install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .
python -m pip install coverage codecov
- name: run coverage
run: |
coverage run run-tests.py --unit
- name: codecov
if: success()
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: |
codecov