Add HsvToRgb routine (backported from eed9a67) #951
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: Demoscene | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
style: | |
name: Python Style | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
lfs: true | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pycodestyle | |
- name: Check Python code style | |
run: bash style-python | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
container: cahirwpz/demoscene:latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
lfs: true | |
- run: make | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: effects | |
path: effects/*/*.adf |