Skip to content

Commit

Permalink
Add codecov, change default branch, bump version to v0.1.4 (#38)
Browse files Browse the repository at this point in the history
* change the default branch from master to main

* add codecov

* bump version to v0.1.4
  • Loading branch information
hyrodium committed Jan 11, 2023
1 parent 1106732 commit b664e6f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CI
on:
push:
branches:
- master
- main
tags: '*'
pull_request:
jobs:
Expand Down Expand Up @@ -47,6 +47,10 @@ jobs:
- uses: julia-actions/julia-runtest@v1
with:
prefix: ${{ matrix.prefix }}
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
with:
file: lcov.info
docs:
name: Documentation
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ImageClipboard"
uuid = "6db54171-f50f-4661-a74f-bc514ef16cee"
authors = ["hyrodium <hyrodium@gmail.com> and contributors"]
version = "0.1.3"
version = "0.1.4"

[deps]
ColorTypes = "3da002f7-5984-5a60-b8a6-cbb66c0b333f"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://hyrodium.github.io/ImageClipboard.jl/stable)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://hyrodium.github.io/ImageClipboard.jl/dev)
[![Build Status](https://github.com/hyrodium/ImageClipboard.jl/workflows/CI/badge.svg)](https://github.com/hyrodium/ImageClipboard.jl/actions)
[![Coverage](https://codecov.io/gh/hyrodium/ImageClipboard.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/hyrodium/ImageClipboard.jl)

Copy & Paste images with Julia

Expand Down
2 changes: 2 additions & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ makedocs(;
prettyurls=get(ENV, "CI", "false") == "true",
canonical="https://hyrodium.github.io/ImageClipboard.jl",
assets=["assets/favicon.ico"],
edit_link="main",
),
pages=[
"Home" => "index.md",
Expand All @@ -21,4 +22,5 @@ makedocs(;

deploydocs(;
repo="github.com/hyrodium/ImageClipboard.jl",
devbranch="main",
)

2 comments on commit b664e6f

@hyrodium
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/75488

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 v0.1.4 -m "<description of version>" b664e6f32b605c47ad0c0b5984bbf108ae86a3de
git push origin v0.1.4

Please sign in to comment.