Skip to content

Commit

Permalink
Merge branch 'master' into update-docs-version
Browse files Browse the repository at this point in the history
  • Loading branch information
halleysfifthinc authored Feb 26, 2024
2 parents a91b77d + 63f7ab6 commit c6482ce
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ name: CI
on:
- push
- pull_request

# needed to allow julia-actions/cache to delete old caches that it has created
permissions:
actions: write
contents: read

jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
Expand All @@ -23,16 +29,7 @@ jobs:
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v4
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ julia> plotpeaks(t, y, peaks=pks, prominences=true, widths=true) # see above pl

- Find peaks (maxima or minima), peak prominence, and peak width
- Filter peaks by peak spacing (window size), prominence, and width
- Compute "Full Width Half Maximum" (FWHM) of discrete or sampled functions using `peakwidths`
- Fully supports `NaN`/`missing` with optional tolerance using keyword arg `strict`:
- Conventional handling/propagation of `NaN`/`missing` when `strict = true` (the default)
```julia
Expand Down

0 comments on commit c6482ce

Please sign in to comment.