Skip to content

Added integration test to pipeline #50

Added integration test to pipeline

Added integration test to pipeline #50

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
integration_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Start containers
run: docker-compose up -d
- name: Run tests
run: cargo test --verbose --test integration
- name: Stop containers
if: always()
run: docker-compose down