Bump prost-types from 0.9.0 to 0.13.2 #1921
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Docs | |
on: | |
pull_request: | |
branches: [main] | |
merge_group: | |
branches: [main] | |
push: | |
branches: [main] | |
jobs: | |
docs: | |
runs-on: ubuntu-latest-8-cores | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install deps | |
run: sudo apt-get -qy update && sudo apt-get install -y libssl-dev libssl1.1; sudo apt-get clean | |
- uses: Swatinem/rust-cache@v2 | |
- name: make docs | |
run: | | |
mkdir docs-test | |
cd docs-test | |
git clone --depth 1 --branch main https://github.com/tremor-rs/tremor-www.git | |
cd tremor-www | |
ln -s ../../../tremor-runtime tremor-runtime | |
make tremor-runtime-docs | |
make openapi | |
make docusaurus |