File tree Expand file tree Collapse file tree 2 files changed +9
-32
lines changed Expand file tree Collapse file tree 2 files changed +9
-32
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,15 @@ jobs:
19
19
runs-on : ubuntu-latest
20
20
timeout-minutes : 15
21
21
steps :
22
- - name : Checkout
23
- uses : actions/checkout@v4
22
+ - uses : actions/checkout@v4
23
+ - name : Setup .NET
24
+ uses : actions/setup-dotnet@v4
25
+ with :
26
+ dotnet-version : 8.0.x
27
+ - name : Restore dependencies
28
+ run : dotnet restore
24
29
- name : Build
25
- run : dotnet build --configuration Release
30
+ run : dotnet build --no-restore
26
31
- name : Start MySql
27
32
run : |
28
33
sudo /etc/init.d/mysql start
31
36
mysql -e 'CREATE TABLE cars(id int primary key auto_increment);' -u${{ env.DB_MYSQL_USER }} ${{ env.DB_MYSQL_DATABASE }}
32
37
mysql -e 'SHOW TABLES;' -u${{ env.DB_MYSQL_USER }} ${{ env.DB_MYSQL_DATABASE }}
33
38
- name : Test
34
- run : dotnet test --configuration Release -- no-build
39
+ run : dotnet test --no-build --verbosity normal
35
40
env :
36
41
SQLKATA_MYSQL_HOST : ${{ env.DB_MYSQL_HOST }}
37
42
SQLKATA_MYSQL_USER : ${{ env.DB_MYSQL_USER }}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments