Skip to content

Use first artist (#87) #122

Use first artist (#87)

Use first artist (#87) #122

Workflow file for this run

name: Build and test
on:
push:
branches:
- main
pull_request:
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Install dependencies
run: dotnet restore src
- name: Build
run: dotnet build src
- name: Test via the dotnet CLI
run: dotnet test src