Skip to content

Commit 85d67d5

Browse files
First release version (#11)
1 parent 245f38f commit 85d67d5

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

.github/workflows/pipeline.yaml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,27 @@ jobs:
6868
- name: Execute Static Checks
6969
run: make lint
7070

71+
BuildPackage:
72+
name: Static Checks
73+
runs-on: ubuntu-latest
74+
steps:
75+
- uses: actions/checkout@v4
76+
77+
- name: Set up Python
78+
uses: actions/setup-python@v4
79+
with:
80+
python-version: '3.11'
81+
82+
- name: Setup UV
83+
run: pip install uv
84+
85+
- name: Execute Static Checks
86+
run: make build
87+
7188
Publish:
7289
name: Publish
7390
runs-on: ubuntu-latest
74-
needs: [UnitTests, StaticChecks, BuildDocs]
91+
needs: [UnitTests, StaticChecks, BuildDocs, BuildPackage]
7592
environment:
7693
name: pypi
7794
url: https://pypi.org/p/gyjd

src/lazy_pandas/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
"LazyStringColumn",
1717
]
1818

19-
__version__ = "0.1.0dev1"
19+
__version__ = "0.1.0"

0 commit comments

Comments
 (0)