27 lines
643 B
YAML
27 lines
643 B
YAML
|
name: ci
|
||
|
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
dotnet-version: ['6.0.x']
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions/setup-dotnet@v1
|
||
|
with:
|
||
|
dotnet-version: ${{ matrix.dotnet-version }}
|
||
|
source-url: https://nuget.pkg.github.com/kyleratti/index.json
|
||
|
env:
|
||
|
NUGET_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||
|
- name: Install dependencies
|
||
|
run: dotnet restore
|
||
|
- name: Build
|
||
|
run: dotnet build --configuration Release --no-restore
|
||
|
- name: Test
|
||
|
run: dotnet test --no-restore --verbosity normal
|