hotfix -version #1254
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: build | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.8", "3.9", "3.10", "3.11"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 # Fetch all history for TruffleHog to scan commits | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: "0.9.22" | |
| - name: Install dependencies | |
| run: | | |
| uv sync | |
| - name: Run style checks | |
| run: | | |
| make check-codestyle | |
| - name: Credentials search in source code - TruffleHog OSS | |
| uses: trufflesecurity/trufflehog@v3.69.0 | |
| - name: Run tests | |
| run: | | |
| make test |