File tree 4 files changed +10
-8
lines changed
4 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ jobs:
13
13
runs-on : ubuntu-latest
14
14
steps :
15
15
- uses : actions/checkout@v3
16
- - uses : omelkonian/setup-agda@v2.1
16
+ - uses : omelkonian/setup-agda@v2.2
17
17
with :
18
- agda-version : 2.7.0
19
- stdlib-version : 2.1.1
20
- libraries : omelkonian /agda-stdlib-classes#v2.1.1
18
+ agda-version : 2.7.0.1
19
+ stdlib-version : 2.2
20
+ libraries : agda /agda-stdlib-classes#v2.2
21
21
main : standard-library-meta
22
22
deploy : ${{ github.ref == 'refs/heads/master' }}
23
23
token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ We mirror the version numbers of [agda-stdlib](https://github.com/agda/agda-stdl
11
11
| [ v2.6.3] ( https://github.com/agda/agda/releases/tag/v2.6.3 ) | [ v1.7.2] ( https://github.com/agda/agda-stdlib/releases/tag/v1.7.2 ) | [ v1.7.2] ( https://github.com/agda/agda-stdlib-classes/releases/tag/v1.7.2 ) | [ v1.7.2] ( https://github.com/agda/agda-stdlib-meta/releases/tag/v1.7.2 ) |
12
12
| [ v2.6.4] ( https://github.com/agda/agda/releases/tag/v2.6.4 ) | [ v1.7.3] ( https://github.com/agda/agda-stdlib/releases/tag/v1.7.3 ) | [ v1.7.3] ( https://github.com/agda/agda-stdlib-classes/releases/tag/v1.7.3 ) | [ v1.7.3] ( https://github.com/agda/agda-stdlib-meta/releases/tag/v1.7.3 ) |
13
13
| [ v2.6.4] ( https://github.com/agda/agda/releases/tag/v2.6.4 ) | [ v2.0] ( https://github.com/agda/agda-stdlib/releases/tag/v2.0 ) | [ v2.0] ( https://github.com/agda/agda-stdlib-classes/releases/tag/v2.0 ) | [ v2.0] ( https://github.com/agda/agda-stdlib-meta/releases/tag/v2.0 ) |
14
- | [ v2.6.4] ( https://github.com/agda/agda/releases/tag/v2.6.4 ) | [ v2.1] ( https://github.com/agda/agda-stdlib/releases/tag/v2.1 ) | [ v2.0] ( https://github.com/agda/agda-stdlib-classes/releases/tag/v2.0 ) | [ v2.1] ( https://github.com/agda/agda-stdlib-meta/releases/tag/v2.1 ) |
15
- | [ v2.7.0] ( https://github.com/agda/agda/releases/tag/v2.7.0 ) | [ v2.1.1] ( https://github.com/agda/agda-stdlib/releases/tag/v2.0 ) | [ v2.0] ( https://github.com/agda/agda-stdlib-classes/releases/tag/v2.0 ) | [ v2.1.1] ( https://github.com/agda/agda-stdlib-meta/releases/tag/v2.1.1 ) |
14
+ | [ v2.6.4] ( https://github.com/agda/agda/releases/tag/v2.6.4 ) | [ v2.1] ( https://github.com/agda/agda-stdlib/releases/tag/v2.1 ) | [ v2.1] ( https://github.com/agda/agda-stdlib-classes/releases/tag/v2.1 ) | [ v2.1] ( https://github.com/agda/agda-stdlib-meta/releases/tag/v2.1 ) |
15
+ | [ v2.7.0] ( https://github.com/agda/agda/releases/tag/v2.7.0 ) | [ v2.1.1] ( https://github.com/agda/agda-stdlib/releases/tag/v2.0 ) | [ v2.1.1] ( https://github.com/agda/agda-stdlib-classes/releases/tag/v2.1.1 ) | [ v2.1.1] ( https://github.com/agda/agda-stdlib-meta/releases/tag/v2.1.1 ) |
16
+ | [ v2.7.0.1] ( https://github.com/agda/agda/releases/tag/v2.7.0.1 ) | [ v2.2] ( https://github.com/agda/agda-stdlib/releases/tag/v2.2 ) | [ v2.2] ( https://github.com/agda/agda-stdlib-classes/releases/tag/v2.2 ) | [ v2.2] ( https://github.com/agda/agda-stdlib-meta/releases/tag/v2.2 ) |
16
17
17
18
Minor revisions will append to these major versions (e.g. ` v1.7.3b ` or ` v1.7.3.10 ` ).
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ open import Meta.Prelude
24
24
open import Agda.Builtin.Reflection using () renaming (primShowQName to showName)
25
25
26
26
import Data.List as L
27
+ import Data.Bool.ListAction as LB
27
28
import Data.List.NonEmpty as NE
28
29
import Data.String as S
29
30
open import Data.Maybe using (fromMaybe)
@@ -101,7 +102,7 @@ genMutualHelpers n = do
101
102
where
102
103
helper : Type → Maybe Name
103
104
helper (def n' args) =
104
- if L .any (λ where (arg _ (def n'' _)) → ⌊ n ≟ n'' ⌋ ; _ → false) args
105
+ if LB .any (λ where (arg _ (def n'' _)) → ⌊ n ≟ n'' ⌋ ; _ → false) args
105
106
then just n' else nothing
106
107
helper _ = nothing
107
108
Original file line number Diff line number Diff line change 1
1
name: standard-library-meta
2
2
depend:
3
- standard-library
3
+ standard-library-2.2
4
4
standard-library-classes
5
5
include: .
You can’t perform that action at this time.
0 commit comments