Skip to content

Commit

Permalink
CI: build package
Browse files Browse the repository at this point in the history
  • Loading branch information
dulmandakh committed Jun 28, 2024
1 parent fd9ecef commit 90fe210
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: 📦 Build package

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install twine
- name: Building package
run: python3 -m build
- name: Check package with Twine
run: twine check dist/*

0 comments on commit 90fe210

Please sign in to comment.