Skip to content

Stick to GHC 8.10.7 in CI until changelog-d is updated and update CI job names to permit making them mandatory in Settings #8505

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/changelogs.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Changelogs
name: Assorted

on:
push:
Expand All @@ -21,6 +21,7 @@ defaults:

jobs:
build:
name: Changelogs
runs-on: ubuntu-latest

steps:
Expand All @@ -35,8 +36,9 @@ jobs:
- name: ghcup
run: |
ghcup config set cache true
ghcup install ghc recommended
ghcup set ghc recommended
ghcup install ghc 8.10.7
ghcup set ghc 8.10.7
# GHC 8.10.7 needed due to https://github.com/phadej/changelog-d/pull/2
- name: Update Hackage index
run: cabal v2-update
# Cannot install it from tarball due to
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/users-guide.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Adapted from agda/agda/.github/workflows/user-manual.yml by Andreas, 2021-09-11

name: Users guide
name: Assorted

# See: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#concurrency.
concurrency:
Expand Down Expand Up @@ -42,6 +42,7 @@ defaults:

jobs:
build:
name: Users guide
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/whitespace.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Whitespace
name: Assorted

on:
push:
Expand All @@ -10,6 +10,7 @@ on:
- created
jobs:
check:
name: Whitespace
runs-on: ubuntu-latest

env:
Expand Down