Skip to content

Merge branch 'main' of https://github.com/Anjocaido13/XPhone #12

Merge branch 'main' of https://github.com/Anjocaido13/XPhone

Merge branch 'main' of https://github.com/Anjocaido13/XPhone #12

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@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Display root directory contents
run: ls -la
- name: Display XPhone directory contents
run: ls -la XPhone
- name: Restore dependencies
run: dotnet restore ./XPhone
- name: Build
run: dotnet build ./XPhone --no-restore
- name: Test
run: dotnet test ./XPhone --no-build --verbosity normal