build(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.109.1 to 1.110.0 #1692
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
| # SPDX-License-Identifier: MPL-2.0 | |
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| pull_request: | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v7 | |
| - name: Set up Go | |
| uses: actions/setup-go@v7 | |
| with: | |
| go-version: '1.27.0' | |
| cache: true | |
| - name: Run linter | |
| env: | |
| CGO_ENABLED: 1 | |
| GOFLAGS: -buildvcs=false | |
| run: make lint | |
| test: | |
| name: Test (${{ matrix.os }}) | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 30 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v7 | |
| - name: Setup msys (Windows) | |
| if: matrix.os == 'windows-latest' | |
| uses: msys2/setup-msys2@v2 | |
| with: | |
| msystem: MINGW64 | |
| update: true | |
| install: mingw-w64-x86_64-toolchain mingw-w64-x86_64-sqlite3 | |
| path-type: inherit | |
| - name: Set up Go | |
| uses: actions/setup-go@v7 | |
| with: | |
| go-version: '1.27.0' | |
| cache: true | |
| env: | |
| MSYSTEM: MINGW64 | |
| - name: Install dependencies | |
| if: matrix.os != 'windows-latest' | |
| run: go mod download | |
| - name: Install dependencies (Windows) | |
| if: matrix.os == 'windows-latest' | |
| shell: msys2 {0} | |
| run: go mod download | |
| - name: Run tests | |
| if: matrix.os != 'windows-latest' | |
| env: | |
| GORACE: "halt_on_error=1" | |
| SKIP_TEMPORAL_TESTS: "1" | |
| SKIP_CLOUDSTORAGE_TESTS: "1" | |
| SKIP_DOCKER_TESTS: "1" | |
| run: make test | |
| - name: Run tests (Windows) | |
| if: matrix.os == 'windows-latest' | |
| shell: msys2 {0} | |
| env: | |
| GORACE: "halt_on_error=1" | |
| SKIP_TEMPORAL_TESTS: "1" | |
| SKIP_CLOUDSTORAGE_TESTS: "1" | |
| SKIP_DOCKER_TESTS: "1" | |
| run: make test | |
| postgres-registry: | |
| name: Test (PostgreSQL registry) | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| services: | |
| postgres: | |
| image: postgres:17-alpine | |
| env: | |
| POSTGRES_PASSWORD: postgres | |
| ports: | |
| - 5432:5432 | |
| options: >- | |
| --health-cmd "pg_isready -U postgres" | |
| --health-interval 5s | |
| --health-timeout 5s | |
| --health-retries 10 | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v7 | |
| - name: Set up Go | |
| uses: actions/setup-go@v7 | |
| with: | |
| go-version: '1.27.0' | |
| cache: true | |
| - name: Run PostgreSQL registry tests | |
| env: | |
| GORACE: "halt_on_error=1" | |
| WIPPY_POSTGRES_HISTORY_TEST_DSN: postgres://postgres:postgres@localhost:5432/postgres?sslmode=disable | |
| run: go test -race -count=1 ./system/registry ./system/registry/history/postgres |