Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/actions/generate/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ runs:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch the entire history to avoid shallow repository issues
ref: ${{ github.ref }}

- name: Download ETP file
run : wget http://geosiris.com/wp-content/uploads/2022/09/etp/${{ inputs.etp-file-name }} -P ${{ github.workspace }}
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/pypi-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
##
name: Build-and-Push-TEST

on:
on:
push:
branches:
- main
Expand All @@ -23,7 +23,8 @@ jobs:
- name: 📥 Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch the entire history to avoid shallow repository issues
fetch-depth: 0 # Fetch the entire history to avoid shallow repository issues
ref: ${{ github.ref }}

- name: Generate code from avro-to-python-etp
uses: ./.github/actions/generate
Expand All @@ -48,7 +49,7 @@ jobs:
- name: 📦 Install poetry
uses: abatilo/actions-poetry@v4
with:
poetry-version: '2.1.1'
poetry-version: "2.1.1"

- name: Python Black
run: |
Expand All @@ -59,6 +60,9 @@ jobs:
- name: 📦 Install poetry-dynamic-versioning
run: poetry self add "poetry-dynamic-versioning[plugin]"

- name: Show poetry version
run: poetry version

- name: 📥 Install dependencies
run: poetry install --no-interaction --no-root

Expand Down