We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a6700b commit 73b150eCopy full SHA for 73b150e
.github/workflows/R-CMD-check.yaml
@@ -104,7 +104,10 @@ jobs:
104
merge-multiple: true
105
- name: Manually sort Windows bindings
106
run: |
107
- find cached_bindings -type f -name '*-windows-*' -exec rustfmt --edition=2021 -v {} \;
+ Get-ChildItem -Path "cached_bindings" -Recurse -File -Filter "*-windows-*" | ForEach-Object {
108
+ rustfmt --edition=2021 -v $_.FullName
109
+ }
110
+
111
- name: Push cached bindings to the repository
112
113
# Note: the following account information will not work on GHES
0 commit comments