Skip to content

Upgrade to .NET 8 and remove obsolete from FightCoreId #17

Upgrade to .NET 8 and remove obsolete from FightCoreId

Upgrade to .NET 8 and remove obsolete from FightCoreId #17

Workflow file for this run

name: Build Backend
on:
push:
branches: ['main']
paths:
- 'backend/**'
pull_request:
branches: ['main']
paths:
- 'backend/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
working-directory: ./backend
- name: Build
run: dotnet build --no-restore
working-directory: ./backend
- name: Test
run: dotnet test --no-build --verbosity normal
working-directory: ./backend