Skip to content

Commit ab6b09d

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 7b0bebb + 992df8e commit ab6b09d

2 files changed

Lines changed: 30 additions & 6 deletions

File tree

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
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

63
on:
74
push:
@@ -12,7 +9,7 @@ on:
129
jobs:
1310
build:
1411

15-
runs-on: windows-latest
12+
runs-on: ubuntu-latest
1613

1714
steps:
1815
- uses: actions/checkout@v4
@@ -25,6 +22,6 @@ jobs:
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

.github/workflows/ci-win.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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

0 commit comments

Comments
 (0)