Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed wrong branch name for github actions 'master' -> 'main' #12

Merged
merged 1 commit into from
Mar 30, 2024
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
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: Run tests
on:
pull_request:
branches:
- master
- main
push:
branches:
- master
- main
- develop
tags: '*'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Documentor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Documentation
on:
push:
branches:
- master
- main
- develop
tags: '*'
pull_request:
Expand Down
6 changes: 3 additions & 3 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ function copy_coverage()
end

makedocs(
modules = [ GameDataManager ],
sitename = "GameDataManager.jl",
modules = [ GameDataManager ],
checkdocs=:warnonly, # should be :all, need to fix the error
authors = "YongHee Kim",
authors = "Yonghee Kim",
checkdocs=:all, # should be :all, need to fix the error
pages = [ "Home" => "index.md",
"Tutorial" => "tutorial.md",
"API Reference" => "api.md"
Expand Down
Loading