Skip to content

Commit 7e9429f

Browse files
feat(deps): bump websockets from 13.1 to 14.2 (#261)
* chore(deps): bump websockets from 13.1 to 14.2 Bumps [websockets](https://github.com/python-websockets/websockets) from 13.1 to 14.2. - [Release notes](https://github.com/python-websockets/websockets/releases) - [Commits](python-websockets/websockets@13.1...14.2) --- updated-dependencies: - dependency-name: websockets dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * fix: update connection open check * chore(ci): submit to coveralls when parallel tests complete * chore(ci): fix formatting of ci yaml * chore(ci): fix caching not finding poetry --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andrew Smith <[email protected]>
1 parent b35bbb6 commit 7e9429f

File tree

4 files changed

+100
-99
lines changed

4 files changed

+100
-99
lines changed

.github/workflows/ci.yml

Lines changed: 26 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,17 @@ jobs:
1919
- name: Clone Repository
2020
uses: actions/checkout@v4
2121

22+
- name: Set up Poetry
23+
uses: abatilo/actions-poetry@v4
24+
with:
25+
poetry-version: latest
26+
2227
- name: Set up Python ${{ matrix.python-version }}
2328
uses: actions/setup-python@v5
2429
with:
2530
python-version: ${{ matrix.python-version }}
31+
cache: 'poetry'
2632

27-
- name: Set up Poetry
28-
uses: abatilo/actions-poetry@v4
29-
with:
30-
poetry-version: latest
3133

3234
- name: Install Supabase CLI
3335
uses: supabase/setup-cli@v1
@@ -42,6 +44,20 @@ jobs:
4244
uses: coverallsapp/github-action@v2
4345
with:
4446
github-token: ${{ secrets.GITHUB_TOKEN }}
47+
flag-name: run-${{ join(matrix.*, '-') }}
48+
parallel: true
49+
50+
finish_tests:
51+
needs: test
52+
if: ${{ always() }}
53+
runs-on: ubuntu-latest
54+
steps:
55+
- name: Coveralls Finished
56+
uses: coverallsapp/github-action@v2
57+
with:
58+
github-token: ${{ secrets.GITHUB_TOKEN }}
59+
parallel-finished: true
60+
carryforward: "run-3.9,run-3.10,run-3.11,run-3.12,run-3.13"
4561

4662
release-please:
4763
needs: test
@@ -69,21 +85,23 @@ jobs:
6985
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
7086
contents: write # needed for github actions bot to write to repo
7187
steps:
88+
- name: Set up Poetry
89+
uses: abatilo/actions-poetry@v4
90+
with:
91+
poetry-version: 1.8.4
92+
7293
- name: Set up Python 3.11
7394
uses: actions/setup-python@v5
7495
with:
7596
python-version: 3.11
97+
cache: 'poetry'
7698

7799
- name: Clone Repository
78100
uses: actions/checkout@v4
79101
with:
80102
ref: ${{ github.ref }}
81103
fetch-depth: 0
82104

83-
- name: Set up Poetry
84-
uses: abatilo/actions-poetry@v4
85-
with:
86-
poetry-version: 1.8.4
87105

88106
- name: Install dependencies
89107
run: poetry install

0 commit comments

Comments
 (0)