diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index ced2878..b842b50 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -11,8 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: ["3.10", "3.11", "3.12", "3.13"] - clang: ["18"] + python: ["3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 @@ -21,11 +20,6 @@ jobs: with: enable-cache: true python-version: ${{ matrix.python }} - - name: Setup Clang - uses: egor-tensin/setup-clang@v1 - with: - version: ${{ matrix.clang }} - platform: x64 - name: Install the project run: uv sync - name: Linting checks