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.
2 parents 7b6ad2c + a744b81 commit ffe043cCopy full SHA for ffe043c
.github/workflows/ci.yml
@@ -0,0 +1,23 @@
1
+---
2
+
3
+on: [push, pull_request]
4
+name: CI
5
6
+jobs:
7
+ test:
8
+ name: Test
9
+ runs-on: ubuntu-latest
10
+ steps:
11
12
+ - uses: actions/checkout@master
13
+ with:
14
+ fetch-depth: 2
15
16
+ - name: Install stable Rust
17
+ run: rustup update stable && rustup default stable
18
19
+ - name: Build docs.rs
20
+ run: cargo build
21
22
+ - name: Test docs.rs
23
+ run: cargo test -- --test-threads=1
azure-pipelines.yml
0 commit comments