chore(deps): bump astral-sh/setup-uv from 4e1e303f7dafb1a3ec7770a507052543f593ad96 to d9ee7e2f262885c8843e45732f53001dc76be009 #32
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: check | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| merge_group: | |
| permissions: | |
| contents: read | |
| env: | |
| MINIMUM_PYTHON_VERSION: "3.11" | |
| UV_VERSION: "0.8.13" | |
| # If new code is pushed to a PR branch, then cancel in progress workflows for that PR. Ensures that | |
| # we don't waste CI time, and returns results quicker https://github.com/jonhoo/rust-ci-conf/pull/5 | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| fmt: | |
| runs-on: ubuntu-latest | |
| name: ubuntu / 3.11 / fmt | |
| steps: | |
| - uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0 | |
| with: | |
| persist-credentials: false | |
| submodules: true | |
| - name: Set up the python ${{ env.MINIMUM_PYTHON_VERSION }} | |
| uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 | |
| id: setup-python | |
| with: | |
| python-version: ${{ env.MINIMUM_PYTHON_VERSION }} | |
| #---------------------------------------------- | |
| # ----- setup uv and load cache ----- | |
| #---------------------------------------------- | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@d9ee7e2f262885c8843e45732f53001dc76be009 # v6.6.0 | |
| with: | |
| version: ${{ env.UV_VERSION }} | |
| enable-cache: true | |
| - name: Install dependencies | |
| run: make install-dev | |
| - name: check formatting | |
| run: make check-fmt | |
| lint: | |
| runs-on: ubuntu-latest | |
| name: ubuntu / 3.11 / lint | |
| steps: | |
| - uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0 | |
| with: | |
| persist-credentials: false | |
| submodules: true | |
| - name: Set up the python ${{ env.MINIMUM_PYTHON_VERSION }} | |
| uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 | |
| id: setup-python | |
| with: | |
| python-version: ${{ env.MINIMUM_PYTHON_VERSION }} | |
| #---------------------------------------------- | |
| # ----- setup uv and load cache ----- | |
| #---------------------------------------------- | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@d9ee7e2f262885c8843e45732f53001dc76be009 # v6.6.0 | |
| with: | |
| version: ${{ env.UV_VERSION }} | |
| enable-cache: true | |
| - name: Install dependencies | |
| run: make install-dev | |
| - name: lint code | |
| run: make lint | |
| type-check: | |
| runs-on: ubuntu-latest | |
| name: ubuntu / 3.11 / type-check | |
| steps: | |
| - uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0 | |
| with: | |
| persist-credentials: false | |
| submodules: true | |
| - name: Set up the python ${{ env.MINIMUM_PYTHON_VERSION }} | |
| uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 | |
| id: setup-python | |
| with: | |
| python-version: ${{ env.MINIMUM_PYTHON_VERSION }} | |
| #---------------------------------------------- | |
| # ----- setup uv and load cache ----- | |
| #---------------------------------------------- | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@d9ee7e2f262885c8843e45732f53001dc76be009 # v6.6.0 | |
| with: | |
| version: ${{ env.UV_VERSION }} | |
| enable-cache: true | |
| - name: Install dependencies | |
| run: make install-dev | |
| - name: type-check code | |
| run: make type-check | |
| # https://github.com/marketplace/actions/alls-green#why used for branch protection checks | |
| check-check: | |
| if: always() | |
| needs: | |
| - fmt | |
| - lint | |
| - type-check | |
| runs-on: ubuntu-latest | |
| permissions: {} | |
| steps: | |
| - name: Decide whether the needed jobs succeeded or failed | |
| uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2 | |
| with: | |
| jobs: ${{ toJSON(needs) }} |