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.
rust.yml
1 parent 9e8c78d commit f3b85cdCopy full SHA for f3b85cd
.github/workflows/ci.yml
@@ -0,0 +1,36 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+env:
10
+ CARGO_TERM_COLOR: always
11
12
+jobs:
13
+ fmt:
14
+ name: Format
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v3
19
20
+ - name: Check
21
+ run: bash contrib/scripts/check-fmt.sh check
22
23
+ check-crate:
24
+ name: Check crate
25
26
27
28
29
30
+ - name: Install Flutter
31
+ uses: subosito/flutter-action@v2
32
+ with:
33
+ flutter-version: 'latest'
34
35
36
+ run: bash contrib/scripts/check-crate.sh
0 commit comments