--- if: ${{ github.ref == 'refs/heads/master' }} needs: [test] defaults: run: shell: bash container: image: luzifer/gh-arch-env env: CGO_ENABLED: 0 GOPATH: /go runs-on: ubuntu-latest services: mysql: image: mysql:8 env: MYSQL_PASSWORD: twitch-bot-pass MYSQL_ROOT_PASSWORD: root-pass MYSQL_USER: twitch-bot options: >- --health-cmd "mysqladmin ping" --health-interval 10s --health-timeout 5s --health-retries 5 steps: - name: Install required packages run: | pacman -Syy --noconfirm \ mariadb-clients - uses: actions/checkout@v4 with: show-progress: false - name: Marking workdir safe run: git config --global --add safe.directory /__w/twitch-bot/twitch-bot - name: Set up MySQL service run: | mariadb --skip-ssl -h mysql -u root --password=root-pass <