We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf094f8 commit a343c20Copy full SHA for a343c20
3 files changed
.github/workflows/py-checks.yml
.github/workflows/py-tests.yml
.github/workflows/rs-checks.yml
@@ -0,0 +1,25 @@
1
+name: rs checks
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
7
+permissions: {}
8
9
+jobs:
10
+ rs-checks:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout working copy
14
+ uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1
15
+ with:
16
+ submodules: true
17
+ fetch-depth: 0
18
+ persist-credentials: false
19
+ - name: cargo check
20
+ run: cargo check --manifest-path ua-parser-rs/Cargo.toml
21
+ - name: cargo clippy # don't run clippy if check fails
22
+ run: cargo clippy --manifest-path ua-parser-rs/Cargo.toml
23
+ - name: cargo fmt
24
+ if: always()
25
+ run: cargo fmt --check --manifest-path ua-parser-rs/Cargo.toml
0 commit comments