Skip to content
Open
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
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-go@v5
- run: go version
- uses: astral-sh/setup-uv@v6
- uses: astral-sh/setup-uv@v7
- name: Check formatting
run: ./script/check.sh go
check-stubs:
Expand All @@ -44,7 +44,7 @@ jobs:
# Minimum supported python here.
- run: echo 'UV_PYTHON=3.9' | tee -a "${GITHUB_ENV}"
- name: Setup uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7
- run: ./script/init.sh

- name: Setup Node.js for pyright
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-go@v5
- run: go version
- uses: astral-sh/setup-uv@v6
- uses: astral-sh/setup-uv@v7
- uses: golangci/golangci-lint-action@v8.0.0
name: Run golangci-lint
with:
Expand All @@ -92,7 +92,7 @@ jobs:
with:
fetch-depth: 0
- uses: actions/setup-go@v5
- uses: astral-sh/setup-uv@v6
- uses: astral-sh/setup-uv@v7
- run: ./script/init.sh
- run: ./script/test.sh go

Expand All @@ -108,7 +108,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-go@v5
- run: go version
- uses: astral-sh/setup-uv@v6
- uses: astral-sh/setup-uv@v7
- run: ./script/init.sh
- run: ./script/test.sh go
env:
Expand All @@ -123,7 +123,7 @@ jobs:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: astral-sh/setup-uv@v6
- uses: astral-sh/setup-uv@v7
- run: ./script/init.sh
- run: ./script/test-setuid.sh

Expand All @@ -136,7 +136,7 @@ jobs:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: astral-sh/setup-uv@v6
- uses: astral-sh/setup-uv@v7
- run: ./script/init.sh
- name: Run setuid cleanup test
run: ./script/test-setuid-cleanup.sh
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: astral-sh/setup-uv@v6
- uses: astral-sh/setup-uv@v7
- run: ./script/check.sh python

test-python:
Expand All @@ -184,7 +184,7 @@ jobs:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: astral-sh/setup-uv@v6
- uses: astral-sh/setup-uv@v7
- run: ./script/test.sh python

release:
Expand All @@ -204,7 +204,7 @@ jobs:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: astral-sh/setup-uv@v6
- uses: astral-sh/setup-uv@v7
- run: ./script/init.sh
- run: ./script/build.sh
env:
Expand Down
Loading