adds micro benchmark to all builders using basic api #92
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push] | |
name: CI | |
jobs: | |
test: | |
name: Run integration tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: 1.62.0 | |
- uses: actions-rs/cargo@v1 | |
name: Test standard syntax | |
with: | |
command: test | |
- uses: actions-rs/cargo@v1 | |
name: Test PostgreSQL syntax | |
with: | |
command: test | |
args: --features postgresql | |
- uses: actions-rs/cargo@v1 | |
name: Test SQLite syntax | |
with: | |
command: test | |
args: --features sqlite |