Skip to content
Merged
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
1 change: 1 addition & 0 deletions .github/workflows/docker-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ jobs:
publish:
name: Build + push (linux/amd64+arm64)
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/pr-gate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
Expand Down Expand Up @@ -75,6 +76,7 @@ jobs:
typecheck:
name: Typecheck (advisory)
runs-on: ubuntu-latest
timeout-minutes: 15
continue-on-error: true
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -106,6 +108,7 @@ jobs:
unit:
name: Unit tests
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
Expand Down Expand Up @@ -191,6 +194,7 @@ jobs:
docker-build:
name: Docker build smoke (single-arch)
runs-on: ubuntu-latest
timeout-minutes: 20
needs: [lint, unit]
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -221,6 +225,7 @@ jobs:
sdk-python:
name: SDK Python
runs-on: ubuntu-latest
timeout-minutes: 15
defaults:
run:
working-directory: sdks/python
Expand All @@ -242,6 +247,7 @@ jobs:
sdk-java:
name: SDK Java (25 + Spring Boot 3.5.9)
runs-on: ubuntu-latest
timeout-minutes: 15
defaults:
run:
working-directory: sdks/java
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish-sdks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
if: ${{ github.event_name == 'push' || github.event.inputs.java != 'false' }}
name: Publish flycanon-sdk (Java) to GitHub Packages
runs-on: ubuntu-latest
timeout-minutes: 15
defaults:
run:
working-directory: sdks/java
Expand Down Expand Up @@ -115,6 +116,7 @@ jobs:
if: ${{ github.event_name == 'push' || github.event.inputs.python != 'false' }}
name: Publish flycanon-sdk (Python)
runs-on: ubuntu-latest
timeout-minutes: 15
defaults:
run:
working-directory: sdks/python
Expand Down
Loading