File tree 4 files changed +14
-4
lines changed
4 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,12 @@ concurrency:
19
19
20
20
jobs :
21
21
test :
22
- runs-on : ubuntu-latest
22
+ strategy :
23
+ matrix :
24
+ os :
25
+ - ubuntu-latest
26
+ - macos-latest
27
+ runs-on : ${{ matrix.os }}
23
28
steps :
24
29
- uses : actions/checkout@v4
25
30
- uses : cachix/install-nix-action@v26
Original file line number Diff line number Diff line change @@ -13,7 +13,12 @@ concurrency:
13
13
14
14
jobs :
15
15
test :
16
- runs-on : ubuntu-latest
16
+ strategy :
17
+ matrix :
18
+ os :
19
+ - ubuntu-latest
20
+ - macos-latest
21
+ runs-on : ${{ matrix.os }}
17
22
steps :
18
23
- uses : actions/checkout@v4
19
24
- uses : cachix/install-nix-action@v26
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ with builtins; let
10
10
dropWhile = import ../utils/dropWhile.nix ;
11
11
12
12
# Regular expression patterns
13
- descriptionRegex = ";;;.+ --- (.+? )" ;
13
+ descriptionRegex = ";;;.+ --- (.+)" ;
14
14
magicHeaderRegex = "(.+)-\\ *-.+-\\ *-[[:space:]]*" ;
15
15
headerRegex = ";;[[:space:]]*(.*[^[:space:]]):([[:space:]]*.*)?" ;
16
16
Original file line number Diff line number Diff line change 1
1
s :
2
2
with builtins ; let
3
- githubMatch = match "https://github.com/(.+)/(.+? )" s ;
3
+ githubMatch = match "https://github.com/(.+)/(.+)" s ;
4
4
in
5
5
if githubMatch != null
6
6
then {
You can’t perform that action at this time.
0 commit comments