publish: load moot-core libraries v1.0.31-rc.1 #30
This file contains hidden or 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
| # Generated by scripts/lib_publish/bootstrap-public-venues.py. Do not edit by hand. | |
| name: scaffold | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| scaffold: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Check generated provenance | |
| run: | | |
| test -f SOURCE.md | |
| test -f LICENSE | |
| test -f NOTICE | |
| grep -q "Generated by scripts/lib_publish/bootstrap-public-venues.py" SOURCE.md | |
| - name: Check public docs | |
| run: | | |
| test -f README.md | |
| test -f TRADEMARKS.md | |
| test -f docs/PACKAGE_MAP.md | |
| test -f docs/CONFORMANCE.md | |
| - name: Check Cargo workspace metadata | |
| run: | | |
| cargo metadata --locked --manifest-path Cargo.toml --no-deps --format-version 1 >/tmp/moot-cargo-metadata.json | |
| - name: Check Cargo workspace build | |
| run: | | |
| cargo check --workspace --locked |