Skip to content

Commit

Permalink
Merge pull request #11 from cgarling/aqua
Browse files Browse the repository at this point in the history
Add Aqua.jl test to CI
  • Loading branch information
cgarling authored Feb 3, 2024
2 parents 25445c1 + 7457ea1 commit 58c12cd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,17 @@ jobs:
- uses: codecov/codecov-action@v3
with:
files: lcov.info
Aqua:
name: Aqua Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: '1'
- uses: julia-actions/julia-buildpkg@v1
- run: julia --color=yes -e 'using Pkg; Pkg.add("Aqua")'
- run: julia --project=@. --color=yes -e 'using Aqua, InitialMassFunctions; Aqua.test_all(InitialMassFunctions; ambiguities=false, piracies=(treat_as_own=[mean],))'
docs:
name: Documentation
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ InitialMassFunctions.jl
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://cgarling.github.io/InitialMassFunctions.jl/stable/)
[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://cgarling.github.io/InitialMassFunctions.jl/dev/)
[![codecov](https://codecov.io/gh/cgarling/InitialMassFunctions.jl/branch/main/graph/badge.svg?token=XY3O7IQPZH)](https://codecov.io/gh/cgarling/InitialMassFunctions.jl)

[![Aqua QA](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl)

Stellar initial mass functions describe the distribution of initial masses that stars are born with. This package aims to implement and provide interfaces for working with initial mass functions, including but not limited to evaluating and sampling from published distributions. See the linked documentation above for more details.

Expand Down

0 comments on commit 58c12cd

Please sign in to comment.