This repository was archived by the owner on Mar 10, 2026. It is now read-only.
ci(project): Include CLI usage documentation files in release artifacts #300
Workflow file for this run
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 | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| name: Build and Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Build | |
| run: cargo build --verbose | |
| - name: Run tests (core) | |
| run: cargo test -p screampp --verbose | |
| - name: Run tests (cli) | |
| run: cargo test -p scream-cli --verbose |