From 9c5caae561413921573a03f00c010c3d1acb9c3b Mon Sep 17 00:00:00 2001 From: Austin Pauley <3708103+austin2118ace@users.noreply.github.com> Date: Fri, 13 Jun 2025 21:14:31 -0400 Subject: [PATCH] Create uv-build.yml Attempts to build using UV against multiple versions of Python --- .github/workflows/uv-build.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/uv-build.yml diff --git a/.github/workflows/uv-build.yml b/.github/workflows/uv-build.yml new file mode 100644 index 0000000..c89690a --- /dev/null +++ b/.github/workflows/uv-build.yml @@ -0,0 +1,27 @@ +# This workflow will install Astral UV and attempt to build the package against multiple python versions +name: Test Build using UV + +on: + push: + branches: [ "main", "develop", "manual" ] + pull_request: + branches: [ "main", "develop", "manual" ] + +permissions: + contents: read + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.10", "3.11", "3.12", "3.13"] + steps: + - uses: actions/checkout@v4 + - name: Install the latest version of uv and set the python version + uses: astral-sh/setup-uv@v6 + with: + python-version: ${{ matrix.python-version }} + + - name: Build using UV + run: uv build