Skip to content

add server host name into the server data #80

add server host name into the server data

add server host name into the server data #80

Workflow file for this run

name: CI
on:
push:
branches: [master]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
ghc: [8.2.2, 8.4.4, 8.6.5, 8.8.4, 8.10.7, 9.0.2, 9.2.8, 9.4.6]
cabal: [3.8.1.0]
experimental: [false]
include:
- ghc: 9.6.2
cabal: 3.10.1.0
experimental: false
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install GHC and Cabal
uses: haskell/actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
- name: Install
env:
GHCVER: ${{ matrix.ghc }}
CABALVER: ${{ matrix.cabal }}
run: |
set -e
cabal --version
echo "$(ghc --version) "`
`"[$(ghc --print-project-git-commit-id 2>/dev/null || echo '?')]"
cabal update
cabal build
set +e