fix: frp conf to toml, wp conf, compose KEY #22
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: BuildTest | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
buildx: | |
#timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
# Add support for more platforms with QEMU (optional) | |
# https://github.com/docker/setup-qemu-action | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Copy .env | |
run: cp .env.example .env | |
- | |
name: Start containers | |
run: docker-compose -f "docker-compose.yml" up -d --build nginx redis frps mysql | |
- | |
name: Down tests | |
run: docker-compose -f "docker-compose.yml" down nginx redis frps mysql |