Streamline quoting #2961
Workflow file for this run
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
| name: tests | ||
| on: | ||
| pull_request: | ||
| paths-ignore: | ||
| - "**.md" | ||
| - ".github/ISSUE_TEMPLATE/**" | ||
| - .gitignore | ||
| push: | ||
| branches: | ||
| - master | ||
| - 0.*.x | ||
| - pr/**/ci | ||
| - ci-* | ||
| paths-ignore: | ||
| - "**.md" | ||
| - ".github/ISSUE_TEMPLATE/**" | ||
| - .gitignore | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref || github.run_id }} | ||
| cancel-in-progress: true | ||
| env: | ||
| CARGO_TERM_COLOR: always | ||
| SCCACHE_GHA_ENABLED: "true" | ||
| RUSTC_WRAPPER: "sccache" | ||
| RUSTFLAGS: "-C debuginfo=0" | ||
| CARGO_INCREMENTAL: 0 | ||
| RUSTDOCFLAGS: --cfg doc_cfg -D warnings | ||
| jobs: | ||
| rustdoc: | ||
| Name: Rustdoc | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: dtolnay/rust-toolchain@nightly | ||
| with: | ||
| components: rustdoc | ||
| - run: cargo +nightly doc --workspace --no-deps --all-features --document-private-items | ||
| rustfmt: | ||
| name: Rustfmt | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: dtolnay/rust-toolchain@nightly | ||
| with: | ||
| components: rustfmt | ||
| - run: cargo +nightly fmt --manifest-path Cargo.toml --all -- --check | ||
| - run: cargo +nightly fmt --manifest-path sea-query-sqlx/Cargo.toml --all -- --check | ||
| - run: cargo +nightly fmt --manifest-path sea-query-derive/Cargo.toml --all -- --check | ||
| - run: cargo +nightly fmt --manifest-path sea-query-postgres/Cargo.toml --all -- --check | ||
| - run: cargo +nightly fmt --manifest-path sea-query-rusqlite/Cargo.toml --all -- --check | ||
| - run: cargo +nightly fmt --manifest-path examples/sqlx_sqlite/Cargo.toml --all -- --check | ||
| - run: cargo +nightly fmt --manifest-path examples/rusqlite/Cargo.toml --all -- --check | ||
| - run: cargo +nightly fmt --manifest-path examples/sqlx_postgres/Cargo.toml --all -- --check | ||
| - run: cargo +nightly fmt --manifest-path examples/postgres/Cargo.toml --all -- --check | ||
| - run: cargo +nightly fmt --manifest-path examples/sqlx_mysql/Cargo.toml --all -- --check | ||
| clippy: | ||
| name: Clippy | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: dtolnay/[email protected] | ||
| with: | ||
| components: clippy | ||
| - name: Cache cargo registry | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: | | ||
| ~/.cargo/registry/index | ||
| ~/.cargo/registry/cache | ||
| ~/.cargo/git/db | ||
| key: ${{ runner.os }}-cargo-clippy-${{ hashFiles('**/Cargo.toml') }} | ||
| - name: Run sccache-cache | ||
| uses: mozilla-actions/[email protected] | ||
| - run: cargo clippy --features=all-features --workspace -- -D warnings | ||
| - run: cargo clippy --manifest-path sea-query-sqlx/Cargo.toml --workspace --features runtime-async-std-rustls --features=with-chrono,with-json,with-rust_decimal,with-bigdecimal,with-uuid,with-time,with-ipnetwork,with-mac_address,postgres-array,postgres-vector -- -D warnings | ||
| - run: cargo clippy --manifest-path sea-query-rusqlite/Cargo.toml --all-features --workspace -- -D warnings | ||
| - run: cargo clippy --manifest-path sea-query-postgres/Cargo.toml --all-features --workspace -- -D warnings | ||
| build: | ||
| name: Workspace | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: dtolnay/[email protected] | ||
| - name: Cache cargo registry | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: | | ||
| ~/.cargo/registry/index | ||
| ~/.cargo/registry/cache | ||
| ~/.cargo/git/db | ||
| key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.toml', 'sea-query-derive/Cargo.toml') }} | ||
| - name: Run sccache-cache | ||
| uses: mozilla-actions/[email protected] | ||
| - run: cargo build --workspace --no-default-features | ||
| - run: cargo build --workspace --all-features | ||
| - run: cargo build --workspace --features=with-chrono | ||
| - run: cargo build --workspace --features=with-json | ||
| - run: cargo build --workspace --features=with-rust_decimal | ||
| - run: cargo build --workspace --features=with-bigdecimal | ||
| - run: cargo build --workspace --features=with-uuid | ||
| - run: cargo build --workspace --features=with-time | ||
| - run: cargo build --workspace --features=with-ipnetwork | ||
| - run: cargo build --workspace --features=with-mac_address | ||
| - run: cargo build --workspace --features=postgres-array | ||
| - run: cargo build --workspace --features=postgres-vector | ||
| - run: cargo build --workspace --features=thread-safe | ||
| - run: cargo test --no-run | ||
| - run: cargo test | ||
| - run: cargo test --features=all-features --no-run | ||
| - run: cargo test --features=all-features | ||
| - run: cargo test --test option-more-parentheses --features=tests-cfg,option-more-parentheses --no-run | ||
| - run: cargo test --test option-more-parentheses --features=tests-cfg,option-more-parentheses | ||
| - run: cargo test --package sea-query-derive --no-run | ||
| - run: cargo test --package sea-query-derive | ||
| binder-build: | ||
| name: Build `sea-query-sqlx` | ||
| runs-on: ubuntu-latest | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| runtime: [async-std] | ||
| tls: [rustls] | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: dtolnay/[email protected] | ||
| - name: Cache cargo registry | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: | | ||
| ~/.cargo/registry/index | ||
| ~/.cargo/registry/cache | ||
| ~/.cargo/git/db | ||
| key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.toml', 'sea-query-sqlx/Cargo.toml') }} | ||
| - name: Run sccache-cache | ||
| uses: mozilla-actions/[email protected] | ||
| - run: cargo build --manifest-path sea-query-sqlx/Cargo.toml --workspace --features sqlx-postgres,sqlx-sqlite,sqlx-any,sqlx-mysql --features=runtime-${{ matrix.runtime }}-${{ matrix.tls }} --features=with-chrono,with-json,with-rust_decimal,with-bigdecimal,with-uuid,with-time,with-ipnetwork,with-mac_address,postgres-array,postgres-vector | ||
| - run: cargo build --manifest-path sea-query-sqlx/Cargo.toml --workspace --features sqlx-postgres,sqlx-sqlite,sqlx-any,sqlx-mysql --features=runtime-${{ matrix.runtime }}-${{ matrix.tls }} --features=with-chrono | ||
| - run: cargo build --manifest-path sea-query-sqlx/Cargo.toml --workspace --features sqlx-postgres,sqlx-sqlite,sqlx-any,sqlx-mysql --features=runtime-${{ matrix.runtime }}-${{ matrix.tls }} --features=with-json | ||
| - run: cargo build --manifest-path sea-query-sqlx/Cargo.toml --workspace --features sqlx-postgres,sqlx-sqlite,sqlx-any,sqlx-mysql --features=runtime-${{ matrix.runtime }}-${{ matrix.tls }} --features=with-rust_decimal | ||
| - run: cargo build --manifest-path sea-query-sqlx/Cargo.toml --workspace --features sqlx-postgres,sqlx-sqlite,sqlx-any,sqlx-mysql --features=runtime-${{ matrix.runtime }}-${{ matrix.tls }} --features=with-bigdecimal | ||
| - run: cargo build --manifest-path sea-query-sqlx/Cargo.toml --workspace --features sqlx-postgres,sqlx-sqlite,sqlx-any,sqlx-mysql --features=runtime-${{ matrix.runtime }}-${{ matrix.tls }} --features=with-uuid | ||
| - run: cargo build --manifest-path sea-query-sqlx/Cargo.toml --workspace --features sqlx-postgres,sqlx-sqlite,sqlx-any,sqlx-mysql --features=runtime-${{ matrix.runtime }}-${{ matrix.tls }} --features=with-time | ||
| - run: cargo build --manifest-path sea-query-sqlx/Cargo.toml --workspace --features sqlx-postgres,sqlx-sqlite,sqlx-any,sqlx-mysql --features=runtime-${{ matrix.runtime }}-${{ matrix.tls }} --features=with-ipnetwork | ||
| - run: cargo build --manifest-path sea-query-sqlx/Cargo.toml --workspace --features sqlx-postgres,sqlx-sqlite,sqlx-any,sqlx-mysql --features=runtime-${{ matrix.runtime }}-${{ matrix.tls }} --features=with-mac_address | ||
| - run: cargo build --manifest-path sea-query-sqlx/Cargo.toml --workspace --features sqlx-postgres,sqlx-sqlite,sqlx-any,sqlx-mysql --features=runtime-${{ matrix.runtime }}-${{ matrix.tls }} --features=postgres-array | ||
| - run: cargo build --manifest-path sea-query-sqlx/Cargo.toml --workspace --features sqlx-postgres,sqlx-sqlite,sqlx-any,sqlx-mysql --features=runtime-${{ matrix.runtime }}-${{ matrix.tls }} --features=postgres-vector | ||
| rusqlite-build: | ||
| name: Build `sea-query-rusqlite` | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: dtolnay/[email protected] | ||
| - name: Cache cargo registry | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: | | ||
| ~/.cargo/registry/index | ||
| ~/.cargo/registry/cache | ||
| ~/.cargo/git/db | ||
| key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.toml', 'sea-query-rusqlite/Cargo.toml') }} | ||
| - name: Run sccache-cache | ||
| uses: mozilla-actions/[email protected] | ||
| - run: cargo build --manifest-path sea-query-rusqlite/Cargo.toml --workspace --features=with-chrono,with-json,with-rust_decimal,with-bigdecimal,with-uuid,with-time,with-ipnetwork,with-mac_address,postgres-array,postgres-vector | ||
| - run: cargo build --manifest-path sea-query-rusqlite/Cargo.toml --workspace --features=with-chrono | ||
| - run: cargo build --manifest-path sea-query-rusqlite/Cargo.toml --workspace --features=with-json | ||
| - run: cargo build --manifest-path sea-query-rusqlite/Cargo.toml --workspace --features=with-rust_decimal | ||
| - run: cargo build --manifest-path sea-query-rusqlite/Cargo.toml --workspace --features=with-bigdecimal | ||
| - run: cargo build --manifest-path sea-query-rusqlite/Cargo.toml --workspace --features=with-uuid | ||
| - run: cargo build --manifest-path sea-query-rusqlite/Cargo.toml --workspace --features=with-time | ||
| - run: cargo build --manifest-path sea-query-rusqlite/Cargo.toml --workspace --features=with-ipnetwork | ||
| - run: cargo build --manifest-path sea-query-rusqlite/Cargo.toml --workspace --features=with-mac_address | ||
| - run: cargo build --manifest-path sea-query-rusqlite/Cargo.toml --workspace --features=postgres-array | ||
| - run: cargo build --manifest-path sea-query-rusqlite/Cargo.toml --workspace --features=postgres-vector | ||
| postgres-build: | ||
| name: Build `sea-query-postgres` | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: dtolnay/[email protected] | ||
| - name: Cache cargo registry | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: | | ||
| ~/.cargo/registry/index | ||
| ~/.cargo/registry/cache | ||
| ~/.cargo/git/db | ||
| key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.toml', 'sea-query-postgres/Cargo.toml') }} | ||
| - name: Run sccache-cache | ||
| uses: mozilla-actions/[email protected] | ||
| - run: cargo build --manifest-path sea-query-postgres/Cargo.toml --workspace --features=with-chrono,with-json,with-rust_decimal,with-bigdecimal,with-uuid,with-time,with-ipnetwork,with-mac_address,postgres-array,postgres-vector | ||
| - run: cargo build --manifest-path sea-query-postgres/Cargo.toml --workspace --features=with-chrono | ||
| - run: cargo build --manifest-path sea-query-postgres/Cargo.toml --workspace --features=with-json | ||
| - run: cargo build --manifest-path sea-query-postgres/Cargo.toml --workspace --features=with-rust_decimal | ||
| - run: cargo build --manifest-path sea-query-postgres/Cargo.toml --workspace --features=with-bigdecimal | ||
| - run: cargo build --manifest-path sea-query-postgres/Cargo.toml --workspace --features=with-uuid | ||
| - run: cargo build --manifest-path sea-query-postgres/Cargo.toml --workspace --features=with-time | ||
| - run: cargo build --manifest-path sea-query-postgres/Cargo.toml --workspace --features=with-ipnetwork | ||
| - run: cargo build --manifest-path sea-query-postgres/Cargo.toml --workspace --features=with-mac_address | ||
| - run: cargo build --manifest-path sea-query-postgres/Cargo.toml --workspace --features=postgres-array | ||
| - run: cargo build --manifest-path sea-query-postgres/Cargo.toml --workspace --features=postgres-vector | ||
| sqlite: | ||
| name: SQLite | ||
| runs-on: ubuntu-latest | ||
| needs: ["build", "rusqlite-build", "binder-build"] | ||
| strategy: | ||
| matrix: | ||
| example: [rusqlite, sqlx_sqlite] | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: dtolnay/[email protected] | ||
| - name: Cache cargo registry | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: | | ||
| ~/.cargo/registry/index | ||
| ~/.cargo/registry/cache | ||
| ~/.cargo/git/db | ||
| key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.toml', 'sea-query-derive/Cargo.toml', 'sea-query-rusqlite/Cargo.toml', 'sea-query-sqlx/Cargo.toml') }} | ||
| - name: Run sccache-cache | ||
| uses: mozilla-actions/[email protected] | ||
| - run: cargo build --manifest-path examples/${{ matrix.example }}/Cargo.toml | ||
| - run: cargo run --manifest-path examples/${{ matrix.example }}/Cargo.toml | ||
| mysql: | ||
| name: MySQL | ||
| runs-on: ubuntu-latest | ||
| needs: ["build", "binder-build"] | ||
| strategy: | ||
| matrix: | ||
| version: [8.0, 5.7] | ||
| example: [sqlx_mysql] | ||
| services: | ||
| mysql: | ||
| image: mysql:${{ matrix.version }} | ||
| env: | ||
| MYSQL_HOST: 127.0.0.1 | ||
| MYSQL_DATABASE: query | ||
| MYSQL_USER: sea | ||
| MYSQL_PASSWORD: sea | ||
| MYSQL_ROOT_PASSWORD: sea | ||
| ports: | ||
| - "3306:3306" | ||
| options: >- | ||
| --health-cmd="mysqladmin ping" | ||
| --health-interval=10s | ||
| --health-timeout=5s | ||
| --health-retries=3 | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: dtolnay/[email protected] | ||
| - name: Cache cargo registry | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: | | ||
| ~/.cargo/registry/index | ||
| ~/.cargo/registry/cache | ||
| ~/.cargo/git/db | ||
| key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.toml', 'sea-query-sqlx/Cargo.toml') }} | ||
| - name: Run sccache-cache | ||
| uses: mozilla-actions/[email protected] | ||
| - run: cargo build --manifest-path examples/${{ matrix.example }}/Cargo.toml | ||
| - run: cargo run --manifest-path examples/${{ matrix.example }}/Cargo.toml | ||
| mariadb: | ||
| name: MariaDB | ||
| runs-on: ubuntu-latest | ||
| needs: ["build", "binder-build"] | ||
| strategy: | ||
| matrix: | ||
| version: [10.6] | ||
| example: [sqlx_mysql] | ||
| services: | ||
| mariadb: | ||
| image: mariadb:${{ matrix.version }} | ||
| env: | ||
| MYSQL_HOST: 127.0.0.1 | ||
| MYSQL_DATABASE: query | ||
| MYSQL_USER: sea | ||
| MYSQL_PASSWORD: sea | ||
| MYSQL_ROOT_PASSWORD: sea | ||
| ports: | ||
| - "3306:3306" | ||
| options: >- | ||
| --health-cmd="mysqladmin ping" | ||
| --health-interval=10s | ||
| --health-timeout=5s | ||
| --health-retries=3 | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: dtolnay/[email protected] | ||
| - name: Cache cargo registry | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: | | ||
| ~/.cargo/registry/index | ||
| ~/.cargo/registry/cache | ||
| ~/.cargo/git/db | ||
| key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.toml', 'sea-query-sqlx/Cargo.toml') }} | ||
| - name: Run sccache-cache | ||
| uses: mozilla-actions/[email protected] | ||
| - run: cargo build --manifest-path examples/${{ matrix.example }}/Cargo.toml | ||
| - run: cargo run --manifest-path examples/${{ matrix.example }}/Cargo.toml | ||
| postgres: | ||
| name: PostgreSQL | ||
| runs-on: ubuntu-latest | ||
| needs: ["build", "binder-build", "postgres-build"] | ||
| strategy: | ||
| matrix: | ||
| version: [14.4, 13.7, 12.11] | ||
| example: [postgres, sqlx_postgres] | ||
| services: | ||
| postgres: | ||
| image: postgres:${{ matrix.version }} | ||
| env: | ||
| POSTGRES_HOST: 127.0.0.1 | ||
| POSTGRES_DB: query | ||
| POSTGRES_USER: sea | ||
| POSTGRES_PASSWORD: sea | ||
| ports: | ||
| - "5432:5432" | ||
| options: >- | ||
| --health-cmd pg_isready | ||
| --health-interval 10s | ||
| --health-timeout 5s | ||
| --health-retries 5 | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: dtolnay/[email protected] | ||
| - name: Cache cargo registry | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: | | ||
| ~/.cargo/registry/index | ||
| ~/.cargo/registry/cache | ||
| ~/.cargo/git/db | ||
| key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.toml', 'sea-query-diesel/Cargo.toml', 'sea-query-postgres/Cargo.toml', 'sea-query-sqlx/Cargo.toml') }} | ||
| - name: Run sccache-cache | ||
| uses: mozilla-actions/[email protected] | ||
| - run: cargo build --manifest-path examples/${{ matrix.example }}/Cargo.toml | ||
| - run: cargo run --manifest-path examples/${{ matrix.example }}/Cargo.toml | ||