Skip to content
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

ci(project): Include CLI usage documentation files in release artifacts

ci(project): Include CLI usage documentation files in release artifacts #300

Workflow file for this run

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