Use db for leaderboard names, manual test bot command syncing (#6272) #2156
This file contains 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: Integration Tests | |
on: | |
push: | |
branches: | |
- master | |
- bso | |
paths-ignore: | |
- "docs/**" | |
pull_request: | |
paths-ignore: | |
- "docs/**" | |
jobs: | |
integration_tests: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
concurrency: | |
group: ${{ github.ref_name }}-integrationtests | |
cancel-in-progress: true | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Run Integration Tests | |
run: docker compose up --build --abort-on-container-exit --remove-orphans && docker compose down --volumes --remove-orphans |