diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index ba2162da..d91e5c06 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -10,10 +10,10 @@ jobs: with: fetch-depth: 0 - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: '1.21' + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: "1.21" - name: Test with the Go CLI run: sudo go test -v ./... @@ -31,20 +31,20 @@ jobs: - name: Set up QEMU uses: docker/setup-qemu-action@v2 - with: - platforms: 'arm64,arm' + with: + platforms: "arm64,arm" - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Login to DockerHub - uses: docker/login-action@v2 - with: - username: wagvpn - password: ${{ secrets.DOCKER_ACCESS_TOKEN }} + uses: docker/login-action@v2 + with: + username: wagvpn + password: ${{ secrets.DOCKER_ACCESS_TOKEN }} - name: Build and push - uses: docker/build-push-action@v3 - with: - push: true - tags: wagvpn/wag:latest \ No newline at end of file + uses: docker/build-push-action@v3 + with: + push: true + tags: wagvpn/wag:latest