Skip to content

Commit

Permalink
ci: update to .NET 8 and run it for wip branch
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulusParssinen authored Feb 21, 2024
1 parent 3c3572f commit 80179c5
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 25 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/dotnet-core.yml

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build

on:
push:
branches:
- master
- wip
pull_request:
branches:
- master
- wip

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 8.0.x
- name: Restore
run: dotnet restore --verbosity normal
- name: Build
run: dotnet build --configuration Release --no-restore --verbosity normal
- name: Testi
run: dotnet test --configuration Release --no-restore --no-build --verbosity normal

0 comments on commit 80179c5

Please sign in to comment.