File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # This workflow will build a .NET project
2- # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
3-
4- name : .NET
1+ name : Linux CI
52
63on :
74 push :
129jobs :
1310 build :
1411
15- runs-on : windows -latest
12+ runs-on : ubuntu -latest
1613
1714 steps :
1815 - uses : actions/checkout@v4
2522 dotnet tool restore
2623 dotnet paket install
2724 - name : Build
28- run : build.cmd
25+ run : ./ build.sh
2926 - name : Test
3027 run : dotnet test --no-build --verbosity normal
Original file line number Diff line number Diff line change 1+ name : Windows CI
2+
3+ on :
4+ push :
5+ branches : [ "master" ]
6+ pull_request :
7+ branches : [ "master" ]
8+
9+ jobs :
10+ build :
11+
12+ runs-on : windows-latest
13+
14+ steps :
15+ - uses : actions/checkout@v4
16+ - name : Setup .NET
17+ uses : actions/setup-dotnet@v4
18+ with :
19+ dotnet-version : 8.0.x
20+ - name : Restore dependencies
21+ run : |
22+ dotnet tool restore
23+ dotnet paket install
24+ - name : Build
25+ run : ./build.cmd
26+ - name : Test
27+ run : dotnet test ./SQLPovider.Test.sln --no-build --verbosity normal
You can’t perform that action at this time.
0 commit comments