Adding Oauth config options and beta tools #72
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: Image Tests | |
| on: | |
| pull_request: | |
| paths: | |
| - pyproject.toml | |
| - Dockerfile | |
| - "*.py" | |
| - tests/** | |
| - tools/** | |
| - utils/** | |
| workflow_call: | |
| workflow_dispatch: | |
| concurrency: | |
| group: "tests-${{ github.workflow }}-${{ github.event.pull_request.head.label || github.head_ref || github.ref }}" | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read # required for actions/checkout | |
| steps: | |
| - name: Check out the repo | |
| uses: actions/checkout@v4 | |
| - name: Setup python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| version: "0.7.17" | |
| - name: Download dependencies | |
| run: make init | |
| - name: Run ruff | |
| run: make lint | |
| - name: Run Unit Tests | |
| run: make test |