adding ci
This commit is contained in:
parent
e3d9f014af
commit
9fc5cacbf1
27
.github/workflows/ci.yml
vendored
Normal file
27
.github/workflows/ci.yml
vendored
Normal 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
|
@ -1,4 +1,6 @@
|
|||||||
[Music Tools.NET](https://music.sarsoo.xyz)
|
[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.
|
Set of experiments in supplementary components to the [Music Tools](https://github.com/Sarsoo/Music-Tools) Spotify smart playlist platform in .NET.
|
Loading…
Reference in New Issue
Block a user