cj_common 1.2.1

Collection of common functions used by cubicle-jockey projects
Documentation
name: 'Rust Tests'

on:
  push:
    branches: [ "main" ]
  pull_request:
    branches: [ "main" ]

permissions:
  contents: read

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v3
      - name: Build
        run: cargo build --verbose
      - name: Run tests
        run: cargo test --verbose --all-features
      - name: Run docs
        run: cargo doc --all-features --no-deps
      - name: Build_Release
        run: cargo build --release