adding ci

This commit is contained in:
andy 2022-08-03 22:57:39 +01:00
parent e3d9f014af
commit 9fc5cacbf1
2 changed files with 29 additions and 0 deletions

27
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,27 @@
name: ci
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
dotnet-version: [ '3.1.x' ]
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v2.1.0
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install Dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
# - name: Test
# run: dotnet test --no-restore --verbosity normal

View File

@ -1,4 +1,6 @@
[Music Tools.NET](https://music.sarsoo.xyz)
==================
![ci](https://github.com/sarsoo/Music-Tools.NET/actions/workflows/ci.yml/badge.svg)
Set of experiments in supplementary components to the [Music Tools](https://github.com/Sarsoo/Music-Tools) Spotify smart playlist platform in .NET.