Skip to content

Commit c75e80a

Browse files
committed
Merge branch 'master' into develop
2 parents b49265e + 01cf243 commit c75e80a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+1146
-814
lines changed

.github/workflows/build-and-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/checkout@v4
1919

2020
- name: Setup Python & Poetry Environment
21-
uses: exasol/python-toolbox/.github/actions/python-environment@1.8.0
21+
uses: exasol/python-toolbox/.github/actions/python-environment@v1
2222

2323
- name: Build Artifacts
2424
run: poetry build

.github/workflows/cd.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
tags:
66
- '**'
7+
- '!v*'
78

89
jobs:
910

.github/workflows/check-release-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions/checkout@v4
1616

1717
- name: Setup Python & Poetry Environment
18-
uses: exasol/python-toolbox/.github/actions/python-environment@1.8.0
18+
uses: exasol/python-toolbox/.github/actions/python-environment@v1
1919

2020
- name: Check Tag Version
2121
# make sure the pushed/created tag matched the project version

.github/workflows/checks.yml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fetch-depth: 0
1717

1818
- name: Setup Python & Poetry Environment
19-
uses: exasol/python-toolbox/.github/actions/python-environment@1.8.0
19+
uses: exasol/python-toolbox/.github/actions/python-environment@v1
2020

2121
- name: Check Version(s)
2222
run: poetry run -- nox -s version:check
@@ -32,7 +32,7 @@ jobs:
3232
uses: actions/checkout@v4
3333

3434
- name: Setup Python & Poetry Environment
35-
uses: exasol/python-toolbox/.github/actions/python-environment@1.8.0
35+
uses: exasol/python-toolbox/.github/actions/python-environment@v1
3636

3737
- name: Build Documentation
3838
run: |
@@ -59,7 +59,7 @@ jobs:
5959
uses: actions/checkout@v4
6060

6161
- name: Setup Python & Poetry Environment
62-
uses: exasol/python-toolbox/.github/actions/python-environment@1.8.0
62+
uses: exasol/python-toolbox/.github/actions/python-environment@v1
6363

6464
- name: Run changelog update check
6565
run: poetry run -- nox -s changelog:updated
@@ -78,7 +78,7 @@ jobs:
7878
uses: actions/checkout@v4
7979

8080
- name: Setup Python & Poetry Environment
81-
uses: exasol/python-toolbox/.github/actions/python-environment@1.8.0
81+
uses: exasol/python-toolbox/.github/actions/python-environment@v1
8282
with:
8383
python-version: ${{ matrix.python-version }}
8484

@@ -109,7 +109,7 @@ jobs:
109109
uses: actions/checkout@v4
110110

111111
- name: Setup Python & Poetry Environment
112-
uses: exasol/python-toolbox/.github/actions/python-environment@1.8.0
112+
uses: exasol/python-toolbox/.github/actions/python-environment@v1
113113
with:
114114
python-version: ${{ matrix.python-version }}
115115
# Install extras so that usage of optional dependencies are also type checked
@@ -133,7 +133,7 @@ jobs:
133133
uses: actions/checkout@v4
134134

135135
- name: Setup Python & Poetry Environment
136-
uses: exasol/python-toolbox/.github/actions/python-environment@1.8.0
136+
uses: exasol/python-toolbox/.github/actions/python-environment@v1
137137
with:
138138
python-version: ${{ matrix.python-version }}
139139

@@ -157,7 +157,7 @@ jobs:
157157
uses: actions/checkout@v4
158158

159159
- name: Setup Python & Poetry Environment
160-
uses: exasol/python-toolbox/.github/actions/python-environment@1.8.0
160+
uses: exasol/python-toolbox/.github/actions/python-environment@v1
161161

162162
- name: Run format check
163163
run: poetry run -- nox -s project:format
@@ -177,12 +177,10 @@ jobs:
177177
uses: actions/checkout@v4
178178

179179
- name: Setup Python & Poetry Environment
180-
uses: exasol/python-toolbox/.github/actions/python-environment@1.8.0
180+
uses: exasol/python-toolbox/.github/actions/python-environment@v1
181181
with:
182182
python-version: ${{ matrix.python-version }}
183-
184-
- name: Install All Extras
185-
run: poetry install --all-extras
183+
extras: "all"
186184

187185
- name: Run Tests and Collect Coverage
188186
run: poetry run -- nox -s test:unit -- --coverage

.github/workflows/examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: actions/checkout@v2
2828

2929
- name: Setup Python & Poetry Environment
30-
uses: exasol/python-toolbox/.github/actions/python-environment@1.7.4
30+
uses: exasol/python-toolbox/.github/actions/python-environment@v1
3131
with:
3232
python-version: ${{ matrix.python-version }}
3333
extras: "all"

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fetch-depth: 0
1818

1919
- name: Setup Python & Poetry Environment
20-
uses: exasol/python-toolbox/.github/actions/python-environment@1.8.0
20+
uses: exasol/python-toolbox/.github/actions/python-environment@v1
2121

2222
- name: Build Documentation
2323
run: |

.github/workflows/matrix-all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v4
1818

1919
- name: Setup Python & Poetry Environment
20-
uses: exasol/python-toolbox/.github/actions/python-environment@1.8.0
20+
uses: exasol/python-toolbox/.github/actions/python-environment@v1
2121

2222
- name: Generate matrix
2323
run: poetry run -- nox -s matrix:all

.github/workflows/matrix-exasol.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v4
1818

1919
- name: Setup Python & Poetry Environment
20-
uses: exasol/python-toolbox/.github/actions/python-environment@1.8.0
20+
uses: exasol/python-toolbox/.github/actions/python-environment@v1
2121

2222
- name: Generate matrix
2323
run: poetry run -- nox -s matrix:exasol

.github/workflows/matrix-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v4
1818

1919
- name: Setup Python & Poetry Environment
20-
uses: exasol/python-toolbox/.github/actions/python-environment@1.8.0
20+
uses: exasol/python-toolbox/.github/actions/python-environment@v1
2121

2222
- name: Generate matrix
2323
run: poetry run -- nox -s matrix:python

.github/workflows/report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fetch-depth: 0
2020

2121
- name: Setup Python & Poetry Environment
22-
uses: exasol/python-toolbox/.github/actions/python-environment@1.8.0
22+
uses: exasol/python-toolbox/.github/actions/python-environment@v1
2323

2424
- name: Download Artifacts
2525
uses: actions/[email protected]

0 commit comments

Comments
 (0)