Bump the version of uv used in the Docker image build - avoid flakine… #4798
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: Lint | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
# Run at 1:00 every day | |
- cron: '0 1 * * *' | |
workflow_dispatch: {} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Set up Python" | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
# We do not use the cache action as uv is faster than the cache action. | |
- name: "Install dependencies" | |
run: | | |
curl -LsSf https://astral.sh/uv/install.sh | sh | |
uv pip install --system --upgrade --editable .[dev] | |
# We choose not to use a Python wrapper or alternative to hadolint as none | |
# appear to be well maintained, and they require more setup than we would | |
# want. | |
- uses: hadolint/hadolint-action@v3.1.0 | |
with: | |
dockerfile: src/mock_vws/_flask_server/Dockerfile | |
- name: "Lint" | |
run: | | |
make lint |