Skip to content

Commit

Permalink
Fix and update CI (#78)
Browse files Browse the repository at this point in the history
* Year++

* Use newer CI environment

* Start testing with newer GHC versions
  • Loading branch information
snowleopard authored Mar 2, 2024
1 parent b22f133 commit 3c49839
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
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

0 comments on commit 3c49839

Please sign in to comment.