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 3cf46a4 commit a90db5eCopy full SHA for a90db5e
.github/workflows/check-build.yml
@@ -0,0 +1,20 @@
1
+name: Pyth SDK
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Install dependencies
14
+ run: sudo apt-get update && sudo apt-get install libudev-dev
15
+ - name: Build
16
+ run: cargo build --verbose
17
+ - name: Run tests
18
+ run: cargo test --verbose
19
+ - name: Check lint
20
+ run: cargo clippy --all-targets --all-features -- -D warnings
0 commit comments