Skip to content

Commit c88b176

Browse files
committed
Merge branch 'develop'
2 parents 2c266fa + 41b496f commit c88b176

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

+3735
-2471
lines changed

.github/ISSUE_TEMPLATE/release-checklist.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@ assignees: ''
1111
- [ ] Commit all changes
1212
- [ ] Ensure unit tests pass in live environment
1313
- [ ] Merge into master
14+
- [ ] Run bandit and safety
1415
- [ ] Build docker images and make sure runnable unit tests pass
1516
- docker build . -t talkpipe:experimental
1617
- [ ] Tag repository
1718
- [ ] Build whl files
1819
- [ ] Install whl file in new environment and test a script in chatterlang_workbench
1920
- [ ] Run examples in the tutorials
20-
- [ ] Push to pypi
21-
- twine upload --repository talkpipe dist/*
2221
- [ ] Push code to repo
2322
- [ ] Push tags to repo
23+
- [ ] Make sure everything passes on github
24+
- [ ] Create a release on github

.github/workflows/ci-cd.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
python-version: ['3.11', '3.12']
20+
python-version: ['3.11', '3.12', '3.13']
2121

2222
steps:
2323
- uses: actions/checkout@v5
@@ -122,7 +122,9 @@ jobs:
122122
type=ref,event=pr
123123
type=semver,pattern={{version}}
124124
type=semver,pattern={{major}}.{{minor}}
125-
type=sha,prefix={{branch}}-
125+
type=sha
126+
type=raw,value=latest,enable=${{ github.event_name == 'release' && !contains(github.ref_name, 'alpha') && !contains(github.ref_name, 'beta') && !contains(github.ref_name, 'a') && !contains(github.ref_name, 'b') }}
127+
type=raw,value=experimental,enable=${{ github.event_name == 'release' && (contains(github.ref_name, 'alpha') || contains(github.ref_name, 'beta') || contains(github.ref_name, 'a') || contains(github.ref_name, 'b')) }}
126128
127129
- name: Build and push Docker image
128130
uses: docker/build-push-action@v6

.gitlab-ci.yml

Lines changed: 0 additions & 264 deletions
This file was deleted.

0 commit comments

Comments
 (0)