-
Notifications
You must be signed in to change notification settings - Fork 8
48 lines (44 loc) · 1.04 KB
/
Test.yml
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
37
38
39
40
41
42
43
44
45
46
47
48
name: Test
on:
push:
branches:
- main
tags: ["*"]
workflow_dispatch:
jobs:
test:
uses: ./.github/workflows/ReusableTest.yml
with:
os: ${{ matrix.os }}
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
allow_failure: ${{ matrix.allow_failure }}
run_codecov: ${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' }}
secrets:
codecov_token: ${{ secrets.CODECOV_TOKEN }}
strategy:
fail-fast: false
matrix:
version:
- "1.6"
- "1"
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
allow_failure: [false]
include:
- version: "nightly"
os: ubuntu-latest
arch: x64
allow_failure: true
- version: "nightly"
os: macOS-latest
arch: x64
allow_failure: true
- version: "nightly"
os: windows-latest
arch: x64
allow_failure: true