Changed order of generated colors for children of color_parents #75
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions. | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python. | |
name: Build & Test | |
on: | |
push: | |
branches: | |
- main | |
- release/* | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install ruff pytest | |
pip install .[test] | |
- name: Lint with ruff | |
run: | | |
# stop the build if there are Python syntax errors or undefined names | |
ruff check --output-format=github --select=E9,F63,F7,F82 --config=pyproject.toml . | |
# default set of ruff rules with GitHub Annotations | |
ruff check --output-format=github --config=pyproject.toml . | |
- name: Test with pytest | |
run: | | |
pytest |