Skip to content

Commit e59ef5f

Browse files
committed
Remove trailing spaces
1 parent c350ab6 commit e59ef5f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/NetCoreTests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
CONNECTION_STRING: "Server=localhost;initial catalog=nhibernate;User Id=sa;Password=P@ssw0rd;packet size=4096;"
1313
- DB: PostgreSQL
1414
CONNECTION_STRING: "Host=localhost;Port=5432;Username=nhibernate;Password=nhibernate;Database=nhibernate;Enlist=true;"
15-
- DB: Firebird
15+
- DB: Firebird
1616
CONNECTION_STRING: "DataSource=localhost;Database=nhibernate;User=SYSDBA;Password=nhibernate;charset=utf8;"
1717
- DB: MySQL
1818
CONNECTION_STRING: "Server=localhost;Uid=root;Password=nhibernate;Database=nhibernate;Old Guids=True;"
@@ -32,19 +32,19 @@ jobs:
3232
- name: Set up MySQL
3333
if: matrix.DB == 'MySQL'
3434
run: |
35-
sudo service mysql stop
35+
sudo service mysql stop
3636
docker run --name mysql -e MYSQL_ROOT_PASSWORD=nhibernate -e MYSQL_USER=nhibernate -e MYSQL_PASSWORD=nhibernate -e MYSQL_DATABASE=nhibernate -p 3306:3306 --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 -d mysql:5.7 mysqld --lower_case_table_names=1
3737
3838
- name: Set up PostgreSQL
3939
if: matrix.DB == 'PostgreSQL'
4040
run: |
4141
docker run -d -e POSTGRES_USER=nhibernate -e POSTGRES_PASSWORD=nhibernate -e POSTGRES_DB=nhibernate -p 5432:5432 postgres
42-
42+
4343
- name: Set up Firebird
4444
if: matrix.DB == 'Firebird'
4545
run: |
4646
docker run --name firebird -e EnableWireCrypt=true -e FIREBIRD_USER=nhibernate -e FIREBIRD_PASSWORD=nhibernate -e ISC_PASSWORD=nhibernate -e FIREBIRD_DATABASE=nhibernate -p 3050:3050 -d jacobalberty/firebird
47-
47+
4848
- uses: actions/checkout@v2
4949
- name: Setup .NET
5050
uses: actions/[email protected]

0 commit comments

Comments
 (0)