Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
- test-mysql
- test-mysql-async
- test-tiberius
- test-turso
- doc
steps:
- run: exit 0
Expand Down Expand Up @@ -187,6 +188,21 @@ jobs:
- run: cargo install --path ./refinery_cli --no-default-features --features=mssql
- run: cd refinery && cargo test --features tiberius-config --test tiberius -- --test-threads 1

test-turso:
name: Test turso
needs: set-rust-versions
runs-on: ubuntu-latest
strategy:
matrix:
rust: ${{ fromJson(needs.set-rust-versions.outputs.versions) }}
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
- run: cargo install --path ./refinery_cli --no-default-features --features=turso
- run: cd refinery && cargo test --features turso --test turso -- --test-threads 1

doc:
name: Build docs
runs-on: ubuntu-latest
Expand Down
Loading
Loading