File tree Expand file tree Collapse file tree 4 files changed +14
-4
lines changed
Expand file tree Collapse file tree 4 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,12 @@ concurrency:
1919
2020jobs :
2121 test :
22- runs-on : ubuntu-latest
22+ strategy :
23+ matrix :
24+ os :
25+ - ubuntu-latest
26+ - macos-latest
27+ runs-on : ${{ matrix.os }}
2328 steps :
2429 - uses : actions/checkout@v4
2530 - uses : cachix/install-nix-action@v26
Original file line number Diff line number Diff line change @@ -13,7 +13,12 @@ concurrency:
1313
1414jobs :
1515 test :
16- runs-on : ubuntu-latest
16+ strategy :
17+ matrix :
18+ os :
19+ - ubuntu-latest
20+ - macos-latest
21+ runs-on : ${{ matrix.os }}
1722 steps :
1823 - uses : actions/checkout@v4
1924 - uses : cachix/install-nix-action@v26
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ with builtins; let
1010 dropWhile = import ../utils/dropWhile.nix ;
1111
1212 # Regular expression patterns
13- descriptionRegex = ";;;.+ --- (.+? )" ;
13+ descriptionRegex = ";;;.+ --- (.+)" ;
1414 magicHeaderRegex = "(.+)-\\ *-.+-\\ *-[[:space:]]*" ;
1515 headerRegex = ";;[[:space:]]*(.*[^[:space:]]):([[:space:]]*.*)?" ;
1616
Original file line number Diff line number Diff line change 11s :
22with builtins ; let
3- githubMatch = match "https://github.com/(.+)/(.+? )" s ;
3+ githubMatch = match "https://github.com/(.+)/(.+)" s ;
44in
55 if githubMatch != null
66 then {
You can’t perform that action at this time.
0 commit comments