[DCP] Use the image tag instead of latest in TF deployments #79
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.11", "3.12"] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Install uv and set the Python version | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: uv sync --locked | |
| - name: Check formatting with Ruff | |
| run: uv run --extra lint ruff format --check | |
| # TODO(dwnoble): Fix formatting issues in datacommons-schema and uncomment these | |
| #- name: Lint with Ruff | |
| # run: uv run ruff check | |
| - name: Run tests | |
| run: | | |
| # Enable parallel test execution | |
| uv run --extra test pytest |