temp-postgres 0.1.0

temporary postgres instance meant for unit tests
Documentation
name: CI
on:
  push:
    branches: ["main"]
  pull_request:
    branches: ["*"]

jobs:
  stable:
    name: Build and test on stable
    strategy:
      matrix:
        os: [ "ubuntu-22.04" ]
    runs-on: ${{ matrix.os }}
    steps:
      - name: Checkout code
        uses: actions/checkout@master
      - name: Install latest stable Rust toolchain
        run: |
          rustup install --profile minimal stable
          rustup default stable
      - name: Build
        run: cargo build --release --color=always --all-targets
      - name: Test
        run: cargo test --release --color=always --all-targets