Clean up public metadata and comments #447
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
| name: ci | |
| on: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| env: | |
| CARGO_TERM_COLOR: always | |
| TECS_WERROR: "1" | |
| jobs: | |
| rust: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: cargo fmt --all -- --check | |
| - run: cargo clippy --locked --workspace --all-targets -- -D warnings | |
| - run: cargo test --locked --workspace --all-targets | |
| engine: | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: cargo xtask deps | |
| - run: cargo xtask check | |
| - run: cargo xtask format-check | |
| - run: cargo xtask test | |
| - run: cargo xtask docs-check | |
| - run: cargo xtask test-package --preset macos-arm64 |