ulid-rs#64: add postgres traits #35
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
name: ci-build | |
on: [push, pull_request] | |
jobs: | |
do-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- run: cargo check --package ulid-cli | |
- run: cargo test | |
- run: cargo test --all-features | |
- run: cargo test --no-default-features --features=std | |
- run: cargo test --no-default-features | |