fix directories maybe idk. garbage tool. #27
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: Docker Tests | |
on: | |
push: | |
pull_request: | |
types: [opened, synchronize] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
docker_linux: | |
name: Docker Linux | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Run Docker Compose Action | |
- uses: adambirds/[email protected] | |
with: | |
compose-file: "./docker-compose.example.yml" | |
up-flags: "--build musicbot_linux" | |
down-flags: "--volumes" | |
docker_windows: | |
name: Docker Windows | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Run Docker Compose Action | |
- uses: adambirds/[email protected] | |
with: | |
compose-file: "./docker-compose.example.yml" | |
up-flags: "--build musicbot_windows" | |
down-flags: "--volumes" | |