From 99f97845429bf0199e1fd822da41866e5c3c296f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonard=20G=C3=B6hrs?= Date: Mon, 18 Mar 2024 14:39:42 +0100 Subject: [PATCH] CI: build source distribution and wheel MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is mostly to check that the respective make target stil works, but maybe the generated wheels can also come in handy. Signed-off-by: Leonard Göhrs --- .github/workflows/build.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/build.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..02df019 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,14 @@ +name: Build + +on: [push, pull_request] + +jobs: + build: + name: Source Distribution and Wheel + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: make build + - uses: actions/upload-artifact@v4 + with: + path: dist