Skip to content
Open
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
2 changes: 0 additions & 2 deletions .github/workflows/build_docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- uses: actions/checkout@v6
with:
submodules: "recursive"

- name: Determine Rust version
id: rust-version
Expand Down
26 changes: 18 additions & 8 deletions .github/workflows/check_lint_build_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,29 @@ jobs:
# import formatting is nightly only
run: cargo +nightly fmt --all -- --check

check-buf-generate:
name: Check buf generate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6

- uses: bufbuild/buf-action@v1
with:
setup_only: true

- name: Verify generated files are up to date
# If this fails: someone hand-edited `lib/proto/generated/`,
# or the proto/plugin pins changed without regenerating. Run
# `buf generate --clean` locally and commit the result.
run: |
buf generate --clean
git diff --exit-code -- lib/proto/generated/

check-clippy-nightly:
name: Check Clippy (nightly)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: "recursive"

- uses: dtolnay/rust-toolchain@master
with:
Expand All @@ -71,8 +87,6 @@ jobs:

steps:
- uses: actions/checkout@v6
with:
submodules: "recursive"

# Must happen /after/ the checkout step, to pick up the toolchain
# from the `rust-toolchain.toml` file.
Expand Down Expand Up @@ -234,8 +248,6 @@ jobs:
cargo build --locked --release

- uses: actions/checkout@v6
with:
submodules: "recursive"

# `rustup` is already installed on GitHub Actions runners, so
# this reads the content from our `rust-toolchain.toml` file.
Expand Down Expand Up @@ -306,8 +318,6 @@ jobs:
timeout-minutes: 20
steps:
- uses: actions/checkout@v6
with:
submodules: "recursive"

# Must happen /after/ the checkout step, to pick up the toolchain
- run: rustup target add ${{ matrix.name }}
Expand Down
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

Loading
Loading