Add DISPLAY_CONTRAST
to europi_config
, refactor Display
class
#1616
Workflow file for this run
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 | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
run_tests: | |
uses: ./.github/workflows/pytest.yml | |
build_and_publish: | |
uses: ./.github/workflows/publish_to_pypi.yml | |
needs: run_tests | |
secrets: | |
TEST_PYPI_API_TOKEN: ${{ secrets.TEST_PYPI_API_TOKEN }} | |
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }} | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: psf/[email protected] |