tand/.github/workflows/validate.yml

27 lines
650 B
YAML
Raw Normal View History

name: Validate
2020-03-10 00:05:02 +00:00
on:
push:
branches: [ '**' ]
2020-03-10 00:05:02 +00:00
pull_request:
branches: [ '**' ]
2020-03-10 00:05:02 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1.4.0
with:
dotnet-version: 3.1.101
source-url: https://nuget.pkg.github.com/baez90/index.json
env:
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Build with dotnet
run: dotnet build --configuration Release
working-directory: ./src/tand/
- name: Run tests
run: dotnet test --configuration Release --no-build
2020-03-10 00:05:02 +00:00
working-directory: ./src/tand/