Refactor container files #2186
Workflow file for this run
This file contains hidden or 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: cleanliness | |
| on: | |
| push: | |
| tags: # only on releases, not RC, since we've tested already | |
| - "[0-9]+.[0-9]+.[0-9]+" | |
| branches: ["**"] # glob pattern to allow slash / | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| branches: | |
| - "release**" | |
| - "main**" | |
| env: | |
| DIEM_FORGE_NODE_BIN_PATH: ${{github.workspace}}/diem-node | |
| LIBRA_CI: 1 | |
| MODE_0L: "TESTNET" | |
| jobs: | |
| clippy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: setup env | |
| uses: ./.github/actions/build_env | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| shared-key: "libra-framework" | |
| cache-all-crates: true | |
| cache-on-failure: true | |
| - name: format | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: fmt | |
| args: --all -- --check | |
| # TODO: clippy can share cache if build for tests is done prior | |
| # - name: build for cache | |
| # run: cargo build --tests --workspace | |
| - name: clippy | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: clippy | |
| args: --workspace --tests -- -D warnings |