Skip to content

Update to Hyper 1

Update to Hyper 1 #7

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
meta-check:
name: Check the generative code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: make meta-check
meta-test:
name: Test the generative code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: make meta-test
check:
name: Check the generated code
runs-on: ubuntu-latest
- uses: Swatinem/rust-cache@v2

Check failure on line 27 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 27
steps:
- run: |
make gen-all-api
make cargo-api ARGS=check
make cargo-api ARGS='check --no-default-features'
make gen-all-cli
make cargo-cli ARGS=check
env:
CI: true
test:
name: Test the generated code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- run: |
make gen-all-api
make cargo-api ARGS=test
env:
CI: true
document:
name: Document the generated code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- run: |
make gen-all-api
make cargo-api ARGS=doc
make docs-all
env:
CI: true
RUSTDOCFLAGS: -A warnings