better support for NO_COLOR and notebooks #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |