Skip to content

Commit db87f62

Browse files
committed
Add poetry to GHA.
1 parent 61d7db3 commit db87f62

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/publish.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,17 @@ jobs:
2727
steps:
2828
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2929
- uses: actions/checkout@v3
30+
- uses: actions/setup-python@v4
31+
with:
32+
python-version: "3.11"
33+
- uses: Gr1N/setup-poetry@v8
34+
with:
35+
poetry-version: "1.3.2"
36+
- name: Install package
37+
run: poetry install
38+
3039

31-
# Runs a single command using the runners shell
32-
- name: do it all
40+
- name: Test stuff
3341
run: |
3442
mkdir build
3543
cd build

0 commit comments

Comments
 (0)