Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ name: Test

env:
RUSTFLAGS: "-Dwarnings --cfg tracing_unstable"
RUSTDOCFLAGS: "-Dwarnings"

jobs:
cargo-build:
Expand Down Expand Up @@ -157,3 +158,19 @@ jobs:

- name: Run Clippy
run: cargo clippy --all-targets --all-features

docs:
name: Build smirk docs
runs-on: ubuntu-latest-16-cores
needs: cargo-build
steps:
- uses: actions/checkout@v3

- uses: Swatinem/rust-cache@v2

- name: Install protoc
run: |
sudo apt-get install -y protobuf-compiler

- name: Run Clippy
run: cargo doc --all-features -psmirk
Loading