Skip to content

⬆️ Upgrading to .NET 8 - still needs code migrations #123

⬆️ Upgrading to .NET 8 - still needs code migrations

⬆️ Upgrading to .NET 8 - still needs code migrations #123

Workflow file for this run

name: .NET
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
include-prerelease: true
- name: Restore dependencies
run: dotnet restore ./src/AutoScrum.sln
- name: Build
run: dotnet build --no-restore ./src/AutoScrum.sln
- name: Install Playwright
shell: pwsh
run: .\src\AutoScrum.UITests\bin\Debug\net8.0\playwright.ps1 install
- name: Test
shell: pwsh
run: |
$env:BaseUrl="https://autoscrum.jkdev.me"
$env:IsGitHubActions="true"
dotnet test ./src/AutoScrum.sln