Skip to content

fixed

fixed #11

Workflow file for this run

name: .NET Tests Simple
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Run tests directly
run: |
cd BikeRental.tests
dotnet restore
dotnet build
dotnet test --verbosity normal