Skip to content

Commit d13adf9

Browse files
committed
test on 2023.3
1 parent b0e051a commit d13adf9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/python-publish.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
image:
24+
image:
25+
- intersystemsdc/iris-community:2023.3-zpm
2526
- intersystemsdc/iris-community:latest
2627
- intersystemsdc/iris-community:preview
2728
runs-on: ubuntu-latest
@@ -33,7 +34,7 @@ jobs:
3334
- name: Run Tests
3435
env:
3536
FOLDER: /home/irisowner/sqlalchemy-iris
36-
run: |
37+
run: |
3738
docker build --build-arg BASE=$IMAGE -t sqlalchemy-iris .
3839
docker run -i --rm sqlalchemy-iris
3940
@@ -53,7 +54,7 @@ jobs:
5354
id: set-version
5455
run: |
5556
VERSION=$(grep version setup.cfg | cut -d= -f2 | tr -d '[:blank:]')
56-
[ $GITHUB_EVENT_NAME == 'push' ] && VERSION+=b && VERSION+=$(($(git tag -l "*$VERSION*" | cut -db -f2 | sort -n | tail -1)+1))
57+
[ $GITHUB_EVENT_NAME == 'push' ] && VERSION+=b && VERSION+=$(($(git tag -l "*$VERSION*" | cut -db -f2 | sort -n | tail -1)+1))
5758
[ $GITHUB_EVENT_NAME == 'release' ] && VERSION=${{ github.event.release.tag_name }} && VERSION=${VERSION/v/}
5859
echo VERSION = $VERSION
5960
sed -ie "s/version = .*/version = $VERSION/" setup.cfg

0 commit comments

Comments
 (0)