Skip to content

Commit ec8299b

Browse files
committed
Pipeline groundwork
1 parent c2bb182 commit ec8299b

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/tests.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: dotnet package
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
dotnet-version: [ '3.1.x', '6.0.x' ]
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Setup .NET 8.x
16+
uses: actions/setup-dotnet@v3
17+
with:
18+
dotnet-version: '8.x'
19+
- name: Install dependencies
20+
run: dotnet restore
21+
- name: Build
22+
run: dotnet build
23+
- name: Test with the dotnet CLI
24+
run: dotnet test

0 commit comments

Comments
 (0)