Bump axum from 0.8.7 to 0.8.8 in /scylla-server #762
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: Scylla CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| - 'feature/**' | |
| defaults: | |
| run: | |
| working-directory: scylla-server | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Rust | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - name: Clippy | |
| run: cargo clippy --all-targets | |
| - name: Fmt | |
| run: cargo fmt --check | |
| - name: Start DB | |
| working-directory: compose | |
| run: docker compose up -d odyssey-db | |
| - name: Build | |
| run: cargo build --verbose | |
| - name: Run # so we can migrate the database, run for a little than bail | |
| env: | |
| DATABASE_URL: postgresql://postgres:password@127.0.0.1:5432/postgres | |
| run: | | |
| cargo run & ID=$!; sleep 10s; kill $ID | |
| - name: Test | |
| env: | |
| DATABASE_URL: postgresql://postgres:password@127.0.0.1:5432/postgres | |
| run: cargo test -- --test-threads=1 | |
| - name: Cleanup | |
| working-directory: compose | |
| run: docker compose down |