Skip to content

Commit be2ef74

Browse files
committed
ci fix
1 parent e2e9e9e commit be2ef74

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,25 @@ jobs:
6363
distribution: "temurin"
6464
java-version: ${{ env.JAVA_VERSION }}
6565
- name: Checkout
66-
uses: actions/checkout@v4
66+
uses: actions/checkout@v4
67+
- name: Build
68+
uses: ./.github/actions/build
69+
with:
70+
go-version: ${{ env.GO_VERSION_BUILD }}
6771
- name: Generate SDK
6872
uses: ./.github/actions/generate-sdk/python
6973
- name: Install Python ${{ matrix.python-version }}
7074
uses: actions/setup-python@v5
7175
with:
7276
python-version: ${{ matrix.python-version }}
77+
- name: Checkout core
78+
uses: actions/checkout@v4
79+
with:
80+
repository: "https://github.com/stackitcloud/stackit-sdk-python-core.git"
81+
path: 'python-core'
82+
- name: Install core
83+
working-directory: 'python-core'
84+
run: make install-dev
7385
- name: Lint
7486
working-directory: ./sdk-repo-updated
7587
run: make lint

0 commit comments

Comments
 (0)