Skip to content

Commit 7aed5c2

Browse files
authored
Merge pull request #41 from opentensor/upgrade-psdk-2509
Upstream changes + PSDK 2509
2 parents 9ec4b2b + 84bade1 commit 7aed5c2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+4566
-2311
lines changed

.github/workflows/editorconfig.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,14 @@ on:
99
branches:
1010
- master
1111
- 'polkadot-v**'
12+
merge_group:
13+
branches: master
1214

1315
jobs:
1416
check:
1517
name: 'Check editorconfig'
1618
runs-on: ubuntu-latest
1719
steps:
18-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v6
1921
- uses: editorconfig-checker/action-editorconfig-checker@main
20-
- run: editorconfig-checker
22+
- run: editorconfig-checker -disable-charset

.github/workflows/lint.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ on:
1313
- 'polkadot-v**'
1414
paths-ignore:
1515
- "**.md"
16+
merge_group:
17+
branches: master
1618

1719
concurrency:
1820
group: ${{ github.workflow }}-${{ github.ref }}
@@ -29,10 +31,10 @@ jobs:
2931
runs-on: ubuntu-latest
3032
steps:
3133
- name: Checkout sources
32-
uses: actions/checkout@v4
34+
uses: actions/checkout@v6
3335

3436
- name: Cache cargo registry & git sources
35-
uses: actions/cache@v4
37+
uses: actions/cache@v5
3638
with:
3739
path: |
3840
~/.cargo/bin/

.github/workflows/test.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ on:
99
branches:
1010
- master
1111
- 'polkadot-v**'
12+
merge_group:
13+
branches: master
1214

1315
concurrency:
1416
group: ${{ github.workflow }}-${{ github.ref }}
@@ -25,10 +27,10 @@ jobs:
2527
runs-on: ubuntu-latest
2628
steps:
2729
- name: Checkout sources
28-
uses: actions/checkout@v4
30+
uses: actions/checkout@v6
2931

3032
- name: Cache cargo registry & git sources
31-
uses: actions/cache@v4
33+
uses: actions/cache@v5
3234
with:
3335
path: |
3436
~/.cargo/bin/
@@ -59,10 +61,10 @@ jobs:
5961
runs-on: ubuntu-latest
6062
steps:
6163
- name: Checkout sources
62-
uses: actions/checkout@v4
64+
uses: actions/checkout@v6
6365

6466
- name: Cache cargo registry & git sources
65-
uses: actions/cache@v4
67+
uses: actions/cache@v5
6668
with:
6769
path: |
6870
~/.cargo/bin/
@@ -89,7 +91,7 @@ jobs:
8991
run: make build-release
9092

9193
- name: Setup node.js
92-
uses: actions/setup-node@v4
94+
uses: actions/setup-node@v6
9395
with:
9496
node-version: 18
9597

.gitignore

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,15 @@ pwasm-libc/Cargo.lock
1313
node/runtime/wasm/target/
1414
**/._*
1515
**/.criterion/
16-
.vscode
1716
polkadot.*
1817
.DS_Store
19-
.idea/
2018
.cargo-remote.toml
2119

20+
# Editors
21+
.vscode
22+
.idea/
23+
.zed
24+
2225
# Added by cargo
2326
/target
2427

0 commit comments

Comments
 (0)