Skip to content

Initial commit

Initial commit #4

Workflow file for this run

name: .NET
on:
push:
branches:
- main
- feature/**
pull_request:
branches:
- main
- feature/**
workflow_dispatch:
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: |
cd src/
dotnet restore ODataSample.sln
- name: Build
run: |
cd src/
dotnet build ODataSample.sln --no-restore
- name: Test
run: |
cd src/
dotnet test ODataSample.sln --no-build --verbosity normal