We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da55df6 commit e5d5d50Copy full SHA for e5d5d50
.github/workflows/rust.yml
@@ -88,6 +88,14 @@ jobs:
88
- name: Checkout sources
89
uses: actions/checkout@v4
90
- uses: Swatinem/rust-cache@v2
91
+ - name: Install yamlfmt
92
+ env:
93
+ YFV: "0.13.0"
94
+ HASH: "043e96d754a8afa4f4c5c13ffb2f3e50c6be5a70bf53292d3025abc0b42fe4ae"
95
+ run: |
96
+ curl -L --fail --output /tmp/yamlfmt.tar.xz https://github.com/google/yamlfmt/releases/download/v${YFV}/yamlfmt_${YFV}_Linux_x86_64.tar.gz
97
+ echo "${HASH} /tmp/yamlfmt.tar.xz" | sha256sum --check
98
+ tar xf /tmp/yamlfmt.tar.xz -C /usr/local/bin yamlfmt
99
- name: Check formatting
100
run: cargo xtask fmt --check
101
- name: Run clippy
0 commit comments