simple-pub-sub 0.1.0

simple message broker
name: Rust

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v3
    - name: Build
      run: cargo build --release --verbose
    - name: Run tests
      run: cargo test --release  --verbose
    - name: Upload a Build Artifact
      uses: actions/upload-artifact@v4.0.0
      with:
        # Artifact name
        name: simple-pub-sub # optional, default is artifact
        # A file, directory or wildcard pattern that describes what to upload
        path: target/release/simple-pub-sub
        # The desired behavior if no files are found using the provided path.