mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 15:11:02 +00:00
Merge commit 'f9c24ef0db390c355241445af37a5c7999a7dc66' into hc-bump-bridges-subtree-take-2
This commit is contained in:
+42
@@ -0,0 +1,42 @@
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: cargo
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: weekly
|
||||
time: "03:00"
|
||||
timezone: Europe/Berlin
|
||||
open-pull-requests-limit: 20
|
||||
ignore:
|
||||
- dependency-name: frame-*
|
||||
versions:
|
||||
- ">= 0"
|
||||
- dependency-name: node-inspect
|
||||
versions:
|
||||
- ">= 0"
|
||||
- dependency-name: pallet-*
|
||||
versions:
|
||||
- ">= 0"
|
||||
- dependency-name: sc-*
|
||||
versions:
|
||||
- ">= 0"
|
||||
- dependency-name: sp-*
|
||||
versions:
|
||||
- ">= 0"
|
||||
- dependency-name: substrate-*
|
||||
versions:
|
||||
- ">= 0"
|
||||
- dependency-name: vergen
|
||||
versions:
|
||||
- 4.0.1
|
||||
- 4.0.2
|
||||
- 4.1.0
|
||||
- 4.2.0
|
||||
- dependency-name: jsonrpc-core
|
||||
versions:
|
||||
- 17.0.0
|
||||
- dependency-name: finality-grandpa
|
||||
versions:
|
||||
- 0.13.0
|
||||
- 0.14.0
|
||||
rebase-strategy: disabled
|
||||
+26
-4
@@ -21,23 +21,45 @@ jobs:
|
||||
env:
|
||||
RUST_BACKTRACE: full
|
||||
steps:
|
||||
|
||||
|
||||
- name: Cancel Previous Runs
|
||||
uses: styfle/cancel-workflow-action@0.4.1
|
||||
with:
|
||||
access_token: ${{ github.token }}
|
||||
|
||||
|
||||
- name: Checkout sources & submodules
|
||||
uses: actions/checkout@master
|
||||
with:
|
||||
fetch-depth: 5
|
||||
submodules: recursive
|
||||
|
||||
|
||||
- name: Add rustfmt
|
||||
run: rustup component add rustfmt
|
||||
|
||||
|
||||
- name: rust-fmt check
|
||||
uses: actions-rs/cargo@master
|
||||
with:
|
||||
command: fmt
|
||||
args: --all -- --check
|
||||
check-spellcheck:
|
||||
name: Check For Spelling and/or Grammar Mistakes
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
RUST_BACKTRACE: full
|
||||
steps:
|
||||
- name: Cancel Previous Runs
|
||||
uses: styfle/cancel-workflow-action@0.4.1
|
||||
with:
|
||||
access_token: ${{ github.token }}
|
||||
|
||||
- name: Checkout sources & submodules
|
||||
uses: actions/checkout@master
|
||||
with:
|
||||
fetch-depth: 5
|
||||
submodules: recursive
|
||||
|
||||
- name: Add cargo-spellcheck
|
||||
run: cargo install cargo-spellcheck
|
||||
|
||||
- name: Run spellcheck
|
||||
run: cargo spellcheck check -m 1 -vv $(find modules/currency-exchange/src -name "*.rs")
|
||||
|
||||
+2
-2
@@ -85,8 +85,8 @@ jobs:
|
||||
matrix:
|
||||
toolchain:
|
||||
- stable
|
||||
#- beta
|
||||
- nightly
|
||||
#- beta
|
||||
- nightly-2021-04-10
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
RUST_BACKTRACE: full
|
||||
|
||||
Reference in New Issue
Block a user