Skip to content

Commit d9539ec

Browse files
Adjust CI pipeline
1 parent cd7e53a commit d9539ec

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Checkout
2929
uses: actions/checkout@v4
3030
- name: Build
31-
uses: ./.github/actions/build
31+
uses: ./.github/actions/build/go
3232
with:
3333
go-version: ${{ env.GO_VERSION_BUILD }}
3434
- name: Generate SDK
@@ -63,29 +63,27 @@ jobs:
6363
distribution: "temurin"
6464
java-version: ${{ env.JAVA_VERSION }}
6565
- name: Checkout
66-
uses: actions/checkout@v4
66+
uses: actions/checkout@v4
6767
- name: Build
68-
uses: ./.github/actions/build
69-
with:
70-
go-version: ${{ env.GO_VERSION_BUILD }}
68+
uses: ./.github/actions/build/python
7169
- name: Generate SDK
7270
uses: ./.github/actions/generate-sdk/python
7371
- name: Install Python ${{ matrix.python-version }}
7472
uses: actions/setup-python@v5
7573
with:
7674
python-version: ${{ matrix.python-version }}
77-
- name: Install core
75+
- name: Install core
7876
run: |
7977
pip install poetry
8078
poetry config virtualenvs.create false
8179
git clone https://github.com/stackitcloud/stackit-sdk-python-core.git core
8280
cd core;make install;
8381
- name: Install sdk
8482
working-directory: ./sdk-repo-updated
85-
run: make install-dev
86-
- name: Lint
83+
run: make install-dev
84+
- name: Lint
8785
working-directory: ./sdk-repo-updated
88-
run: make lint
86+
run: make lint
8987
- name: Test
9088
working-directory: ./sdk-repo-updated
9189
run: make test

0 commit comments

Comments
 (0)