Skip to content

Allow to use LoggingConnection with derive(MultiConnection) #28

Allow to use LoggingConnection with derive(MultiConnection)

Allow to use LoggingConnection with derive(MultiConnection) #28

Workflow file for this run

name: diesel-logger
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: clippy, rustfmt
- name: Run rustfmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
- name: Run clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: -- -D warnings
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test