rocket-cli 0.0.1

A fast, ergonomic command-line interface (CLI) for scaffolding and running [Rocket](https://rocket.rs) web applications in Rust. Spin up production-ready APIs in seconds with idiomatic project structure and database-backed templates.
Documentation
name: Run unit tests

on:
  push:
    branches: [ "dev" ]
  pull_request:
    branches: [ "master" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v4
    - name: Set [ENVIRONMENT] variables
      run: |
        echo "Running unit tests..."

    - name: Build
      run: cargo build --verbose
      working-directory: ./

    - name: Run tests
      run: cargo test --verbose
      working-directory: ./