Skip to content

Re-add support for tonic #54

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
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: 13 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,25 @@ jobs:
components: clippy
- run: cargo clippy --all-targets --all-features -- -D warnings

msrv:
name: Minimal rust version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.73"
- name: Build System Info
run: cargo build --lib --all-features

tests:
name: Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
build: [pinned, stable, nightly]
build: [stable, nightly]
include:
- build: pinned
os: ubuntu-22.04
rust: 1.68.0
- build: stable
os: ubuntu-22.04
rust: stable
Expand Down
Loading
Loading