29 lines
512 B
YAML
29 lines
512 B
YAML
name: Run tests on push push
|
|
|
|
on:
|
|
push
|
|
|
|
jobs:
|
|
build:
|
|
name: Test EDNA
|
|
runs-on: windows-latest
|
|
permissions:
|
|
contents: write
|
|
|
|
steps:
|
|
- name: Checkout source code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup .Net
|
|
uses: actions/setup-dotnet@v2
|
|
with:
|
|
dotnet-version: '6.0.x'
|
|
|
|
- name: Restore dependencies
|
|
run: dotnet restore
|
|
|
|
- name: Build
|
|
run: dotnet build -c release
|
|
|
|
- name: Run tests
|
|
run: dotnet test
|