Skip to content

Design logo and add favicon to page #22

Design logo and add favicon to page

Design logo and add favicon to page #22

Workflow file for this run

name: build_and_test.yml
on:
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
env:
Solution_Name: ReplayBrowser.sln
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Verify .NET Core version
run: dotnet --version
- name: Restore NuGet Packages
run: dotnet restore ./ReplayBrowser/ReplayBrowser.csproj
- name: Build Solution
run: dotnet build ./ReplayBrowser/ReplayBrowser.csproj