Skip to content

test: not adding an existing hotel twice #10

test: not adding an existing hotel twice

test: not adding an existing hotel twice #10

Workflow file for this run

name: .NET Core CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.x'
- name: Install dependencies
run: dotnet restore
- name: Build project
run: dotnet build --no-restore
- name: Run tests
run: dotnet test --no-build --verbosity normal