Skip to content

Update to Hyper 1

Update to Hyper 1 #6

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
clippy:
name: Run Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- run: cargo clippy -- -D warnings
build-and-test:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- run: |
source ~/.profile
cargo test
make test-gen
make gen-all-cli cargo-api ARGS=test
make cargo-api ARGS='check --all-features'
make cargo-api ARGS='check --no-default-features'
make cargo-api ARGS=doc
make cargo-cli ARGS=check
make docs-all
env:
# The environment variable is set to test only on a few selected APIs,
# speeding up the integration process. See etc/api/api-list-ci.yaml.
CI: true
RUSTDOCFLAGS: -A warnings