Archived
1
0
forked from MeloNX/MeloNX
This repository has been archived on 2025-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
MeloNX/.github/workflows/dotnet.yml
2024-10-04 11:00:34 +05:30

29 lines
655 B
YAML

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
branches: [ "libryujinx_bionic" ]
pull_request:
branches: [ "libryujinx_bionic" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release -o build
- name: Test
run: dotnet test --no-build --verbosity normal