Skip to content

Commit

Permalink
edit example plot and update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinavnatarajan committed Dec 5, 2022
1 parent 11b08e7 commit 6d6b0e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup Julia
uses: julia-actions/setup-julia@v1
with:
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Process code coverage
uses: julia-actions/julia-processcoverage@v1
- name: Upload code coverage report to Codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
files: lcov.info
docs:
Expand All @@ -41,7 +41,7 @@ jobs:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: '1.8'
Expand Down
2 changes: 1 addition & 1 deletion examples/basic_example.jl
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ begin
title = "Posterior Distribution of p",
label = "Empirical density",
legend_font_pointsize=12,
legend_position = :best)
legend_position = :topleft)
density!(result.p, color=:black, linewidth = 2, linestyle=:dash,
label = "Kernel estimate")
end
Expand Down

2 comments on commit 6d6b0e1

@abhinavnatarajan
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/73538

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.0.0 -m "<description of version>" 6d6b0e1e537343a0c20a6a920e3ca0c64d26b16c
git push origin v1.0.0

Please sign in to comment.