Skip to content

Commit

Permalink
CI: add build GitHub action
Browse files Browse the repository at this point in the history
This is mostly to make sure that the `make build` target keeps working,
but the generated source distribution and wheel may also come in handy.

Signed-off-by: Leonard Göhrs <[email protected]>
  • Loading branch information
hnez committed Mar 20, 2024
1 parent 4d667f1 commit 2009530
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 2009530

Please sign in to comment.