diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml deleted file mode 100644 index 1e8ce34..0000000 --- a/.github/workflows/build.yaml +++ /dev/null @@ -1,18 +0,0 @@ -name: Build - -on: [push, pull_request] - -jobs: - build: - name: Source Distribution and Wheel - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - # include tags and full history for setuptools_scm - fetch-depth: 0 - - run: make build - - uses: actions/upload-artifact@v4 - with: - name: dist - path: dist diff --git a/.github/workflows/qa.yaml b/.github/workflows/check-and-build.yaml similarity index 60% rename from .github/workflows/qa.yaml rename to .github/workflows/check-and-build.yaml index b6ababf..20e7a60 100644 --- a/.github/workflows/qa.yaml +++ b/.github/workflows/check-and-build.yaml @@ -1,4 +1,4 @@ -name: Quality Assurance +name: Check and Build on: [push, pull_request] @@ -26,3 +26,17 @@ jobs: steps: - uses: actions/checkout@v4 - run: make qa-ruff + + build: + name: Build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + # include tags and full history for setuptools_scm + fetch-depth: 0 + - run: make build + - uses: actions/upload-artifact@v4 + with: + name: dist + path: dist