Bump ws from 8.11.0 to 8.20.1 in /examples/yesod-pubsub/client #71
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: CI | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize, ready_for_review] | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| include: | |
| - env: legacy | |
| ghc: 8.4.4 | |
| - env: maintenance | |
| ghc: 8.10.7 | |
| - env: stable | |
| ghc: 9.6.6 | |
| - env: latest | |
| ghc: 9.10.3 | |
| fail-fast: false | |
| runs-on: ubuntu-latest | |
| name: GHC ${{ matrix.ghc }} (${{ matrix.env }}) | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup | |
| with: | |
| ghc: ${{ matrix.ghc }} | |
| - name: Sync environment | |
| run: hwm sync ${{ matrix.env }} | |
| - name: Install dependencies | |
| run: stack build --fast --skip-ghc-check --no-terminal --test --only-dependencies | |
| - name: Build | |
| run: stack build --fast | |
| - name: Build Bench and Haddock | |
| run: stack build --fast --no-run-benchmarks --haddock --no-haddock-deps | |
| - name: Test | |
| run: stack test --fast | |
| - name: Test Code Gen | |
| run: | | |
| stack install --fast morpheus-graphql-code-gen | |
| morpheus check | |
| style: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: nalchevanidze/hwm/actions/cli@main | |
| - name: lint | |
| run: hwm lint | |
| - name: format | |
| run: hwm format | |
| artifacts: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macOS-latest, windows-latest] | |
| name: Artifact ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup | |
| - name: Install dependencies | |
| run: stack build --fast --skip-ghc-check --no-terminal --test --only-dependencies | |
| - name: Test Archiving | |
| shell: bash | |
| run: hwm release artifacts | |
| concurrency: | |
| group: ${{ github.ref }} | |
| cancel-in-progress: true |