Skip to content

ci: add workflow to auto-rebase feature branches #8448

ci: add workflow to auto-rebase feature branches

ci: add workflow to auto-rebase feature branches #8448

Workflow file for this run

name: Build Workspace
on:
push:
branches: ["main"]
pull_request:
branches: ["**"]
workflow_call:
concurrency:
group: ${{ github.workflow_ref }}-build-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
lint:
name: Build
runs-on:
- runs-on=${{ github.run_id }}/runner=64cpu-linux-x64/image=ubuntu24-full-x64/extras=s3-cache
steps:
- uses: runs-on/action@v2
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: Run build
run: |
cargo clean
cargo build --verbose