name: CI on: push: branches: - main pull_request: branches: - main jobs: test: name: Test setup-postgresql runs-on: ${{ matrix.platform }} strategy: fail-fast: false matrix: platform: [ubuntu-latest, windows-latest, macos-latest, macos-11, windows-2022] postgresql_version: [10, 11, 12, 14, 15] steps: - name: Checkout uses: actions/checkout@v4 - name: shellcheck uses: reviewdog/action-shellcheck@v1 - name: Run docker-action uses: ./ with: postgresql_version: ${{ matrix.postgresql_version }}