Skip to content

Commit 271f197

Browse files
authored
Merge pull request #15 from JuliaXRTS/beautification
Beautification
2 parents 14c2b3e + ab643ad commit 271f197

File tree

7 files changed

+681
-65
lines changed

7 files changed

+681
-65
lines changed

.JuliaFormatter.toml

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/workflows/Test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,9 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
version:
25-
- "lts"
2625
- "1"
2726
os:
2827
- ubuntu-latest
29-
3028
arch:
3129
- x64
3230
allow_failure: [false]

.github/workflows/TestOnPRs.yml

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
- "src/**"
99
- "test/**"
1010
- "*.toml"
11+
- "*.md"
1112
types: [opened, synchronize, reopened]
1213

1314
concurrency:
@@ -20,10 +21,22 @@ jobs:
2021
test:
2122
uses: ./.github/workflows/ReusableTest.yml
2223
with:
23-
os: ubuntu-latest
24-
version: "1"
25-
arch: x64
26-
allow_failure: false
27-
run_codecov: true
24+
os: ${{ matrix.os }}
25+
version: ${{ matrix.version }}
26+
arch: ${{ matrix.arch }}
27+
allow_failure: ${{ matrix.allow_failure }}
28+
run_codecov: ${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' }}
2829
secrets:
2930
codecov_token: ${{ secrets.CODECOV_TOKEN }}
31+
strategy:
32+
fail-fast: false
33+
matrix:
34+
version:
35+
- "lts"
36+
- "1"
37+
os:
38+
- ubuntu-latest
39+
- macOS-latest
40+
arch:
41+
- x64
42+
allow_failure: [false]

0 commit comments

Comments
 (0)