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 f91dd33 commit f24cca7Copy full SHA for f24cca7
.github/workflows/pyth-sdk-terra.yml
@@ -23,3 +23,27 @@ jobs:
23
run: cargo build --verbose
24
- name: Run tests
25
run: cargo test --verbose
26
+ lints:
27
+ name: Lints
28
+ runs-on: ubuntu-latest
29
+ defaults:
30
+ run:
31
+ working-directory: ./pyth-sdk-terra
32
+ steps:
33
+ - name: Checkout sources
34
+ uses: actions/checkout@v2
35
+
36
+ - name: Install stable toolchain
37
+ uses: actions-rs/toolchain@v1
38
+ with:
39
+ profile: minimal
40
+ toolchain: 1.58.1
41
+ override: true
42
+ components: clippy
43
44
+ - name: Generate Schema
45
+ run: cargo run --example schema
46
47
+ - name: Schema Changes
48
+ # fails if any changes not committed
49
+ run: git diff --exit-code schema
0 commit comments