move to new bezel overlay for standalone emulators #38
Workflow file for this run
This file contains hidden or 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: Checks | |
| on: | |
| push: | |
| paths: | |
| - 'package/batocera/core/batocera-configgen/configgen/configgen/**' | |
| - 'python-src/**' | |
| - 'prek.toml' | |
| - 'pyproject.toml' | |
| - 'uv.lock' | |
| - '.github/workflows/checks.yml' | |
| - '.github/actions/setup-python/action.yml' | |
| pull_request: | |
| paths: | |
| - 'package/batocera/core/batocera-configgen/configgen/configgen/**' | |
| - 'python-src/**' | |
| - 'prek.toml' | |
| - 'pyproject.toml' | |
| - 'uv.lock' | |
| - '.github/workflows/checks.yml' | |
| - '.github/actions/setup-python/action.yml' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| unit-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up Python Environment | |
| uses: './.github/actions/setup-python' | |
| - name: Run tests | |
| # For example, using `pytest` | |
| run: uv run py.test python-src | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up Python Environment | |
| uses: './.github/actions/setup-python' | |
| - name: Prek hooks | |
| run: uv run prek --show-diff-on-failure --color=always --all-files |