Skip to content

Bump postgres from 0.19.1 to 0.19.7 #24

Bump postgres from 0.19.1 to 0.19.7

Bump postgres from 0.19.1 to 0.19.7 #24

Workflow file for this run

name: Tests
"on":
pull_request: {}
push:
branches:
- main
jobs:
unit:
name: Unit Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: actions-rs/install@v0.1
with:
crate: cargo-tarpaulin
version: latest
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: tarpaulin
- name: Report coverage
run: bash <(curl -s https://codecov.io/bash)