File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change 97
97
runs-on : ubuntu-latest
98
98
steps :
99
99
- uses : actions/checkout@v4
100
- - uses : dtolnay/rust-toolchain@stable
101
- with :
102
- components : rustfmt, clippy
103
100
- name : Run fmt and clippy
104
101
run : |
105
102
readarray -t all_projects < <(echo '${{ needs.changes.outputs.changed_projects }}' | jq -r '.[]?')
@@ -129,11 +126,16 @@ jobs:
129
126
failed_projects : ${{ steps.set-failed.outputs.failed_projects }}
130
127
steps :
131
128
- uses : actions/checkout@v4
132
- - uses : dtolnay/rust-toolchain@stable
133
- - uses : actions/cache@v4
129
+ - uses : dorny/paths-filter@v3
130
+ id : changes
131
+ if : github.event_name == 'pull_request'
134
132
with :
135
- path : ~/.cargo/bin/steel
136
- key : ${{ runner.os }}-steel-cli
133
+ list-files : shell
134
+ filters : |
135
+ native:
136
+ - added|modified: '**/native/**'
137
+ workflow:
138
+ - added|modified: '.github/workflows/solana-native.yml'
137
139
- name : Use Node.js
138
140
uses : actions/setup-node@v4
139
141
with :
You can’t perform that action at this time.
0 commit comments