Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .JuliaFormatter.toml

This file was deleted.

2 changes: 0 additions & 2 deletions .github/workflows/Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,9 @@ jobs:
fail-fast: false
matrix:
version:
- "lts"
- "1"
os:
- ubuntu-latest

arch:
- x64
allow_failure: [false]
23 changes: 18 additions & 5 deletions .github/workflows/TestOnPRs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- "src/**"
- "test/**"
- "*.toml"
- "*.md"
types: [opened, synchronize, reopened]

concurrency:
Expand All @@ -20,10 +21,22 @@ jobs:
test:
uses: ./.github/workflows/ReusableTest.yml
with:
os: ubuntu-latest
version: "1"
arch: x64
allow_failure: false
run_codecov: true
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:
- "lts"
- "1"
os:
- ubuntu-latest
- macOS-latest
arch:
- x64
allow_failure: [false]
Loading
Loading