Skip to content

Update README.md with a clear Description, expanded Features and Installation Guide, and a new Troubleshooting Section #30

Update README.md with a clear Description, expanded Features and Installation Guide, and a new Troubleshooting Section

Update README.md with a clear Description, expanded Features and Installation Guide, and a new Troubleshooting Section #30

Workflow file for this run

name: Build & Test
on:
push:
branches-ignore:
- release
paths-ignore:
- 'doc/**'
pull_request:
branches-ignore:
- release
paths-ignore:
- 'doc/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Install dependencies
run: dotnet restore IF.Lastfm.sln
- name: Build
run: dotnet build -c Release --no-restore IF.Lastfm.sln
- name: Test
run: dotnet test --no-restore IF.Lastfm.sln