Skip to content

AddAsync, UpdateAsync (#19) #73

AddAsync, UpdateAsync (#19)

AddAsync, UpdateAsync (#19) #73

Workflow file for this run

name: Tests
on:
push:
branches:
- main
tags-ignore:
- '*'
paths:
- "src/**"
- "tests/**"
- "BitzArt.Flux.sln"
- ".github/workflows/Tests.yml"
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal