diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c5cb7a2..0aa15d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,6 +7,23 @@ on: pull_request: jobs: - testing: - name: Pull request check - uses: ./.github/workflows/testing.yml + build-testing: + name: Build + runs-on: ubuntu-latest + steps: + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Login to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Build image + uses: docker/build-push-action@v3 + with: + file: Dockerfile-test + push: false + tags: levkey/brs_bot:test \ No newline at end of file