Skip to content
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

Fix and update CI #78

Merged
merged 3 commits into from
Mar 2, 2024
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
ghc: ['9.6.1', '9.4.4', '9.2.7', '9.0.2', '8.10.7', '8.8.4', '8.6.5']
ghc: ['9.8.2', '9.6.3', '9.4.7', '9.2.8', '9.0.2', '8.10.7', '8.8.4', '8.6.5']
include:
- os: windows-latest
# Testing on MacOS is disabled until GitHub actions support 'allow-failure'
# - os: macOS-latest

steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v1
- uses: actions/checkout@v3
- uses: haskell-actions/setup@v2
id: setup-haskell
with:
ghc-version: ${{ matrix.ghc }}
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018-2023 Andrey Mokhov
Copyright (c) 2018-2024 Andrey Mokhov

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions selective.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ license: MIT
license-file: LICENSE
author: Andrey Mokhov <[email protected]>, github: @snowleopard
maintainer: Andrey Mokhov <[email protected]>, github: @snowleopard
copyright: Andrey Mokhov, 2018-2023
copyright: Andrey Mokhov, 2018-2024
homepage: https://github.com/snowleopard/selective
bug-reports: https://github.com/snowleopard/selective/issues
category: Control
build-type: Simple
cabal-version: 1.18
tested-with: GHC==9.6.1, GHC==9.4.4, GHC==9.2.7, GHC==9.0.2, GHC==8.10.7, GHC==8.8.4, GHC==8.6.5
tested-with: GHC==9.8.2, GHC==9.6.3, GHC==9.4.7, GHC==9.2.8, GHC==9.0.2, GHC==8.10.7, GHC==8.8.4, GHC==8.6.5
description: Selective applicative functors: declare your effects statically,
select which to execute dynamically.
.
Expand Down
2 changes: 1 addition & 1 deletion src/Control/Selective.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
-----------------------------------------------------------------------------
-- |
-- Module : Control.Selective
-- Copyright : (c) Andrey Mokhov 2018-2023
-- Copyright : (c) Andrey Mokhov 2018-2024
-- License : MIT (see the file LICENSE)
-- Maintainer : [email protected]
-- Stability : experimental
Expand Down
2 changes: 1 addition & 1 deletion src/Control/Selective/Free.hs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
-----------------------------------------------------------------------------
-- |
-- Module : Control.Selective.Free
-- Copyright : (c) Andrey Mokhov 2018-2023
-- Copyright : (c) Andrey Mokhov 2018-2024
-- License : MIT (see the file LICENSE)
-- Maintainer : [email protected]
-- Stability : experimental
Expand Down
2 changes: 1 addition & 1 deletion src/Control/Selective/Multi.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
-----------------------------------------------------------------------------
-- |
-- Module : Control.Selective.Multi
-- Copyright : (c) Andrey Mokhov 2018-2023
-- Copyright : (c) Andrey Mokhov 2018-2024
-- License : MIT (see the file LICENSE)
-- Maintainer : [email protected]
-- Stability : experimental
Expand Down
2 changes: 1 addition & 1 deletion src/Control/Selective/Rigid/Free.hs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
-----------------------------------------------------------------------------
-- |
-- Module : Control.Selective.Rigid.Free
-- Copyright : (c) Andrey Mokhov 2018-2023
-- Copyright : (c) Andrey Mokhov 2018-2024
-- License : MIT (see the file LICENSE)
-- Maintainer : [email protected]
-- Stability : experimental
Expand Down
2 changes: 1 addition & 1 deletion src/Control/Selective/Rigid/Freer.hs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
-----------------------------------------------------------------------------
-- |
-- Module : Control.Selective.Rigid.Freer
-- Copyright : (c) Andrey Mokhov 2018-2023
-- Copyright : (c) Andrey Mokhov 2018-2024
-- License : MIT (see the file LICENSE)
-- Maintainer : [email protected]
-- Stability : experimental
Expand Down
2 changes: 1 addition & 1 deletion src/Control/Selective/Trans/Except.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
-----------------------------------------------------------------------------
-- |
-- Module : Control.Selective.Trans.Except
-- Copyright : (c) Andrey Mokhov 2018-2023
-- Copyright : (c) Andrey Mokhov 2018-2024
-- License : MIT (see the file LICENSE)
-- Maintainer : [email protected]
-- Stability : experimental
Expand Down
Loading