-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (26 loc) · 684 Bytes
/
Copy pathtests.yaml
File metadata and controls
32 lines (26 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
tests:
name: Tests
runs-on: ubuntu-20.04
timeout-minutes: 5
steps:
- name: Tests | Checkout
uses: actions/checkout@v2
- name: Tests | Setup
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
dotnet-quality: 'preview'
- name: Tests
run: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=lcov
- name: Tests | Coverage
uses: codecov/codecov-action@v1
with:
files: tests/AppAny.Quartz.EntityFrameworkCore.Migrations.Tests/coverage.info