Skip to content

Update 013-static-connection-pool.md #57

Update 013-static-connection-pool.md

Update 013-static-connection-pool.md #57

Workflow file for this run

name: CI
on:
pull_request:
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
push:
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
branches:
- main
- pr/**/ci
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref || github.run_id }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
# Try to build mdbooks
- name: Install mdbook
run: (test -x $HOME/.cargo/bin/mdbook || cargo install --debug --vers "^0.4" mdbook)
- name: Build mdbook
run: mdbook build