split kusama/polkadot runtimes #24
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: Clippy-Runtime | |
on: | |
pull_request: | |
branches: [ master ] | |
paths: | |
- 'polkadot-parachains/integritee-kusama/**' | |
- 'polkadot-parachains/integritee-polkadot/**' | |
# cancel previous runs | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
clippy-runtimes: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
runtime: [ "integritee-kusama", "integritee-polkadot" ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set rust version via common env file | |
run: cat .github/env >> $GITHUB_ENV | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Fetch cache | |
uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43 # v2.7.0 | |
with: | |
shared-key: "parachain-cache-clippy" | |
- name: Run clippy | |
uses: actions-rs/clippy-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: --manifest-path polkadot-parachains/${{ matrix.runtime }}/Cargo.toml | |
env: | |
# RUSTFLAGS: "-D warnings" # FAIL-CI | |
SKIP_WASM_BUILD: 1 |