Skip to content

Commit b624359

Browse files
committed
Fix line length (I hope)
1 parent 12fa523 commit b624359

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

.github/workflows/php.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,18 @@ jobs:
6666
GRANT ALL ON `simplesamlphp`.* TO `phpunit`@`localhost`;
6767
' simplesamlphp
6868
mysql -uroot -proot -e "
69-
INSERT INTO AttributeFromSQL (uid, sp, attribute, value) VALUES ('[email protected]', '%', 'eduPersonEntitlement', 'urn:mace:exampleIdP.org:demoservice:demo-admin');
70-
INSERT INTO AttributeFromSQL (uid, sp, attribute, value) VALUES ('[email protected]', 'https://idp.example.org/idp/shibboleth', 'eduPersonEntitlement', 'urn:mace:grnet.gr:eduroam:admin');
71-
INSERT INTO AttributeFromSQL (uid, sp, attribute, value) VALUES ('[email protected]', '%', 'eduPersonAffiliation', 'faculty');
72-
INSERT INTO AttributeFromSQL (uid, attribute, value) VALUES ('[email protected]', 'mail', '[email protected]');
73-
INSERT INTO AttributeFromSQL (uid, attribute, value, expires) VALUES ('[email protected]', 'mail', '[email protected]', '2015-10-21');
69+
INSERT INTO AttributeFromSQL (uid, sp, attribute, value) VALUES
70+
('[email protected]', '%', 'eduPersonEntitlement',
71+
'urn:mace:exampleIdP.org:demoservice:demo-admin');
72+
INSERT INTO AttributeFromSQL (uid, sp, attribute, value) VALUES
73+
('[email protected]', 'https://idp.example.org/idp/shibboleth',
74+
'eduPersonEntitlement', 'urn:mace:grnet.gr:eduroam:admin');
75+
INSERT INTO AttributeFromSQL (uid, sp, attribute, value) VALUES
76+
('[email protected]', '%', 'eduPersonAffiliation', 'faculty');
77+
INSERT INTO AttributeFromSQL (uid, attribute, value) VALUES
78+
79+
INSERT INTO AttributeFromSQL (uid, attribute, value, expires) VALUES
80+
('[email protected]', 'mail', '[email protected]', '2015-10-21');
7481
" simplesamlphp
7582
7683
- name: Setup PHP, with composer and extensions

0 commit comments

Comments
 (0)