Skip to content

better support for NO_COLOR and notebooks #9

better support for NO_COLOR and notebooks

better support for NO_COLOR and notebooks #9

Workflow file for this run

# See also: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python Tests
on:
workflow_call: {}
# push:
# branches: [ "master" ]
pull_request:
branches: [ "master" ]
paths-ignore:
- '**.md'
- '**.png'
permissions:
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Up Python
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install Deps
run: make init
- name: Static-Analysis
run: make static-analysis
- name: Unit Tests
run: make utest
- name: Integration Tests
run: make itest
- name: Smoke Tests
run: make stest