We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed0bbaa commit e22dfbdCopy full SHA for e22dfbd
1 file changed
.github/workflows/rust.yml
@@ -31,4 +31,14 @@ jobs:
31
- name: Build
32
run: cargo build --verbose --features serde
33
- name: Run tests
34
- run: cargo test --verbose --features serde
+ run: cargo test --verbose --features serde
35
+
36
+ docs:
37
+ runs-on: ubuntu-latest
38
+ env:
39
+ RUSTFLAGS: -C target-cpu=x86-64
40
+ RUSTDOCFLAGS: -C target-cpu=x86-64
41
+ steps:
42
+ - uses: actions/checkout@v4
43
+ - name: Docs
44
+ run: cargo doc --verbose --all-features
0 commit comments