Merge branch 'feature/v0.4.4' into develop #26
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
name: Continuous Integration - Static Type Checking | |
on: [push, pull_request] | |
jobs: | |
continuous-integration-static-type-checking: | |
name: ${{ matrix.os }} - Python ${{ matrix.python-version }} | |
strategy: | |
matrix: | |
os: [macOS-latest] | |
python-version: [3.11] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Environment Variables | |
run: | | |
echo "CI_PACKAGE=colour" >> $GITHUB_ENV | |
shell: bash | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Dependencies (macOS) | |
if: matrix.os == 'macOS-latest' | |
run: | | |
brew install graphviz | |
export GRAPHVIZ_DIR="/usr/local/Cellar/graphviz/<VERSION>" | |
pip install pygraphviz --global-option=build_ext --global-option="-I$GRAPHVIZ_DIR/include" --global-option="-L$GRAPHVIZ_DIR/lib" | |
- name: Install Package Dependencies | |
run: | | |
pip install -r requirements.txt | |
- name: Static Type Checking | |
run: | | |
pyright --skipunannotated |