diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a47ca35..18bd05e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,11 +15,13 @@ jobs: with: fetch-depth: 0 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: - python-version: '${{ matrix.python-version }}' + python-version: "${{ matrix.python-version }}" - name: Display Python version run: python -c "import sys; print(sys.version)" + - name: Install the build module + run: pip install build - name: Install dependencies shell: bash run: |