Skip to content

Commit

Permalink
net8.0 build
Browse files Browse the repository at this point in the history
  • Loading branch information
pimbrouwers committed Dec 12, 2023
1 parent ba07508 commit 52a38b5
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
name: build

on:
push:
on:
push:
branches: [master]
pull_request:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['6.0.x']
dotnet-version: ['8.0.x']
steps:
- uses: actions/checkout@v2

- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v1.7.2
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}

- name: Install dependencies
run: dotnet restore

- name: Build
run: dotnet build -c Release --no-restore

- name: Test
run: dotnet test -c Release --no-build

0 comments on commit 52a38b5

Please sign in to comment.