Skip to content

fix: compio h2 support #145

fix: compio h2 support

fix: compio h2 support #145

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
name: Build, Test, and Validate Examples
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v3
# Install Rust
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build release
run: cargo build --release
- name: Build all features
run: cargo build --release --all-features
- name: Build all examples
run: cargo build --release --examples