We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08047ac commit dadfbb2Copy full SHA for dadfbb2
.github/workflows/build.yml
@@ -22,9 +22,9 @@ jobs:
22
23
runs-on: ${{ matrix.platform }}
24
steps:
25
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
26
- name: setup node
27
- uses: actions/setup-node@v3
+ uses: actions/setup-node@v4
28
with:
29
node-version: 16
30
- name: install pnpm
@@ -45,3 +45,18 @@ jobs:
45
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
46
47
projectPath: src-tauri
48
+
49
+ fmt:
50
+ runs-on: ubuntu-latest
51
+ name: Run cargo fmt on stable
52
+ steps:
53
54
+ with:
55
+ submodules: true
56
+ - name: Install Rust stable toolchain
57
+ uses: dtolnay/rust-toolchain@stable
58
59
+ components: rustfmt
60
+ - name: cargo fmt --check
61
+ run: cargo fmt --check
62
+ working-directory: src-tauri
0 commit comments