Skip to content

Added trace test to debug CI failure #55

Added trace test to debug CI failure

Added trace test to debug CI failure #55

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
SQLX_OFFLINE: "true"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Start containers
run: docker-compose up -d
- name: Show containers
run: docker-compose ps
- name: Run tests
run: cargo test --verbose --test integration
env:
AWS_ACCESS_KEY_ID: minioadmin
AWS_SECRET_ACCESS_KEY: minioadmin
AWS_REGION: us-east-1
- name: Stop containers
if: always()
run: docker-compose down