Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,18 @@ name: check
on:
push:
branches:
- "*"
- main
pull_request:
branches:
- "*"
- "**"
permissions:
contents: read

# Pull requests supersede their own earlier runs; pushes to main are keyed by
# run_id so they always run to completion.
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
format:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -97,6 +103,7 @@ jobs:
runs-on: ubuntu-latest
name: build
strategy:
fail-fast: false
matrix:
package: [nats-py, nats-core, nats-server, nats-jetstream, nats-key-value]
steps:
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,20 @@ name: test
on:
push:
branches:
- "**"
- main
pull_request:
branches:
- "**"

permissions:
contents: read

# Pull requests supersede their own earlier runs; pushes to main are keyed by
# run_id so they always run to completion.
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
nats:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -58,6 +64,7 @@ jobs:
name: ${{ matrix.project }} (python-${{ matrix.python-version }}, nats-server-${{ matrix.nats-server-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.13"]
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
Expand Down
Loading