Adds Mysql syntax to AlterTable builder #119
This file contains hidden or 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 | |
- uses: actions-rs/cargo@v1 | |
name: Test MySQL syntax | |
with: | |
command: test | |
args: --features mysql |