diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index 8789c17..f60e766 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -14,14 +14,19 @@ jobs: steps: - uses: actions/checkout@v4 - - name: configure - run: ./configure + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version-file: .python-version + + - name: Install uv + uses: astral-sh/setup-uv@v6 - name: Install dependencies - run: make + run: make install - - name: Run check - run: make check + - name: Build + run: make build - - name: Run distcheck - run: make distcheck + - name: Run tests + run: make test