Skip to content

Commit 823eab0

Browse files
cl fixes
1 parent fdeaa4b commit 823eab0

File tree

8 files changed

+32
-2
lines changed

8 files changed

+32
-2
lines changed

.github/workflows/cli-foundry-test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
check:
1616
name: Foundry project
1717
runs-on: ubuntu-latest
18+
defaults:
19+
run:
20+
working-directory: target_chains/ethereum/sdk/stylus
1821
steps:
1922
- name: Checkout repository
2023
uses: actions/checkout@v4

.github/workflows/cli-stylus-check-wasm.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
check-wasm:
2222
name: Check WASM binary
2323
runs-on: ubuntu-latest
24+
defaults:
25+
run:
26+
working-directory: target_chains/ethereum/sdk/stylus
2427
steps:
2528
- uses: actions/checkout@v4
2629

.github/workflows/cli-stylus-check.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ jobs:
2929
fmt:
3030
runs-on: ubuntu-latest
3131
name: nightly / fmt
32+
defaults:
33+
run:
34+
working-directory: target_chains/ethereum/sdk/stylus
3235
steps:
3336
- uses: actions/checkout@v4
3437
with:
@@ -48,6 +51,9 @@ jobs:
4851
clippy:
4952
runs-on: ubuntu-latest
5053
name: ${{ matrix.toolchain }} / clippy
54+
defaults:
55+
run:
56+
working-directory: target_chains/ethereum/sdk/stylus
5157
permissions:
5258
contents: read
5359
checks: write
@@ -81,6 +87,9 @@ jobs:
8187
# platforms.
8288
runs-on: ubuntu-latest
8389
name: nightly / doc
90+
defaults:
91+
run:
92+
working-directory: target_chains/ethereum/sdk/stylus
8493
steps:
8594
- uses: actions/checkout@v4
8695
with:
@@ -101,6 +110,9 @@ jobs:
101110
# are all additive which is required for feature unification.
102111
runs-on: ubuntu-latest
103112
name: ubuntu / stable / features
113+
defaults:
114+
run:
115+
working-directory: target_chains/ethereum/sdk/stylus
104116
steps:
105117
- uses: actions/checkout@v4
106118
with:
@@ -124,6 +136,9 @@ jobs:
124136
typos:
125137
runs-on: ubuntu-latest
126138
name: ubuntu / stable / typos
139+
defaults:
140+
run:
141+
working-directory: target_chains/ethereum/sdk/stylus
127142
steps:
128143
- name: Checkout Actions Repository
129144
uses: actions/checkout@v4

.github/workflows/cli-stylus-e2e-tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
required:
2929
name: tests
3030
runs-on: ubuntu-latest
31+
defaults:
32+
run:
33+
working-directory: target_chains/ethereum/sdk/stylus
3134
steps:
3235
- uses: actions/checkout@v4
3336

.github/workflows/cli-stylus-gas-bench.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
required:
2222
name: Gas usage report
2323
runs-on: ubuntu-latest
24+
defaults:
25+
run:
26+
working-directory: target_chains/ethereum/sdk/stylus
2427
steps:
2528
- uses: actions/checkout@v4
2629

.github/workflows/cli-stylus-nostd.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ jobs:
2222
nostd:
2323
runs-on: ubuntu-latest
2424
name: ${{ matrix.target }}
25+
defaults:
26+
run:
27+
working-directory: target_chains/ethereum/sdk/stylus
2528
strategy:
2629
matrix:
2730
target: [wasm32-unknown-unknown]

.github/workflows/publish-pythnet-stylus-sdk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
tags:
66
- pythnet-stylus-sdk-v*
77
jobs:
8-
publish-pythnet-sdk:
8+
publish-pythnet-stylus-sdk:
99
name: Publish Pythnet Stylus SDK
1010
runs-on: ubuntu-latest
1111
steps:

target_chains/ethereum/sdk/stylus/examples/extend-pyth-example/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ impl ExtendPythExample {
2020
/// Returns a vector of bytes containing the data.
2121
fn get_data(&self) -> Vec<u8> {
2222
// just reteun data
23-
vec![1, 2, 3,4,5,6,7,8, 9,10]
23+
vec![1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
2424
}
2525
}

0 commit comments

Comments
 (0)