kind: pipeline type: docker name: check steps: - name: cargo check image: rust:latest environment: SQLX_OFFLINE: 'true' commands: - cargo check - name: cargo test image: rust:latest environment: SQLX_OFFLINE: 'true' commands: - cargo test