Auth methods #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |