Add validated CODESYS deployment bundles #29
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: Quality | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| quality: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - windows-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - name: Install Python | |
| run: uv python install 3.10 | |
| - name: Install dependencies | |
| run: uv sync --locked --extra validation | |
| - name: Lint | |
| run: uv run ruff check src tests examples | |
| - name: Type check | |
| run: uv run pyright | |
| - name: Test | |
| run: uv run pytest |