Skip to content

Commit

Permalink
add build test
Browse files Browse the repository at this point in the history
  • Loading branch information
nllong committed Apr 21, 2024
1 parent 2bcc2b5 commit 741441f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Test Build of Python Package

on: push

jobs:
deploy:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install Poetry
uses: snok/[email protected]
- name: Install dependencies
run: |
python -m pip install --upgrade pip
poetry install
- name: Build package
run: poetry build

0 comments on commit 741441f

Please sign in to comment.