-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (30 loc) · 736 Bytes
/
Copy pathtests.yaml
File metadata and controls
36 lines (30 loc) · 736 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
33
34
35
36
name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Tests | Checkout
uses: actions/checkout@v2
- name: Tests | Setup
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
7.0.x
9.0.x
8.0.x
10.0.x
- 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