Enable more linters #2063
Workflow file for this run
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 image | |
| on: | |
| pull_request: | |
| branches: [ master ] | |
| paths: | |
| - '.github/workflows/docker.yml' | |
| - '**.go' | |
| - 'go.*' | |
| - 'Makefile' | |
| - '*.conf.in' | |
| - 'docker/server/*' | |
| - 'docker/proxy/*' | |
| push: | |
| branches: [ master ] | |
| paths: | |
| - '.github/workflows/docker.yml' | |
| - '**.go' | |
| - 'go.*' | |
| - 'Makefile' | |
| - '*.conf.in' | |
| - 'docker/server/*' | |
| - 'docker/proxy/*' | |
| permissions: | |
| contents: read | |
| env: | |
| TEST_TAG: strukturag/nextcloud-spreed-signaling:test | |
| jobs: | |
| server: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build Docker image | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: . | |
| file: docker/server/Dockerfile | |
| platforms: linux/amd64,linux/arm64 | |
| proxy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build Docker image | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: . | |
| file: docker/proxy/Dockerfile | |
| platforms: linux/amd64,linux/arm64 |