Update PostgreSQL image version to 17 in README #137
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: Lint, test, and build | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| jobs: | |
| lint-test-build: | |
| strategy: | |
| matrix: | |
| vars: [ | |
| { os: ubuntu-24.04, platform: linux/amd64 }, | |
| { os: ubuntu-24.04-arm, platform: linux/arm64 }, | |
| ] | |
| name: Lint, test, and build the code | |
| runs-on: ${{ matrix.vars.os }} | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Docker buildx for multi-architecture builds | |
| uses: docker/setup-buildx-action@v3 | |
| with: | |
| use: true | |
| - name: Build the Docker image | |
| run: > | |
| docker buildx build | |
| --load | |
| --platform ${{ matrix.vars.platform }} | |
| --tag pgbackweb:latest | |
| --file docker/Dockerfile.dev . | |
| - name: Run lint, test, and build | |
| run: > | |
| docker run --rm -v $PWD:/app pgbackweb:latest /bin/bash -c " | |
| cd /app && | |
| deno install && | |
| go mod download && | |
| task fixperms && | |
| task check-deps && | |
| task lint-only && | |
| task test-only && | |
| task build | |
| " |