[wip] cloud_storage: change remote naming scheme #7497
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint & Test rp-storage-tool | |
on: | |
push: | |
branches: | |
- 'dev' | |
paths: | |
- 'tools/rp_storage_tool/**' | |
tags-ignore: | |
- '**' | |
pull_request: | |
paths: | |
- 'tools/rp_storage_tool/**' | |
jobs: | |
check: | |
name: Compile check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Run cargo check | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --manifest-path tools/rp_storage_tool/Cargo.toml | |
test: | |
name: Unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Run cargo test | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --manifest-path tools/rp_storage_tool/Cargo.toml |