Skip to content

Commit 50b3dcb

Browse files
committed
More fixes to CI and documenter
1 parent 715fa17 commit 50b3dcb

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: CI
22
on:
33
push:
44
branches:
5-
- main
5+
- master
66
tags: ['*']
77
pull_request:
88
workflow_dispatch:

.github/workflows/CompatHelper.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
steps:
1010
- name: Pkg.add("CompatHelper")
1111
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
12-
- name: CompatHelper.main()
12+
- name: CompatHelper.master()
1313
env:
1414
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1515
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
16-
run: julia -e 'using CompatHelper; CompatHelper.main()'
16+
run: julia -e 'using CompatHelper; CompatHelper.master()'

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://kiranshila.github.io/FresnelIntegrals.jl/stable/)
44
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://kiranshila.github.io/FresnelIntegrals.jl/dev/)
5-
[![Build Status](https://github.com/kiranshila/FresnelIntegrals.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/kiranshila/FresnelIntegrals.jl/actions/workflows/CI.yml?query=branch%3Amain)
6-
[![Coverage](https://codecov.io/gh/kiranshila/FresnelIntegrals.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/kiranshila/FresnelIntegrals.jl)
5+
[![Build Status](https://github.com/kiranshila/FresnelIntegrals.jl/actions/workflows/CI.yml/badge.svg?branch=master)](https://github.com/kiranshila/FresnelIntegrals.jl/actions/workflows/CI.yml?query=branch%3Amaster)
6+
[![Coverage](https://codecov.io/gh/kiranshila/FresnelIntegrals.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/kiranshila/FresnelIntegrals.jl)
77

88
A quick Julia library for calculating Fresnel Integrals using the error function from [SpecialFunctions.jl](https://github.com/JuliaMath/SpecialFunctions.jl).
99

docs/make.jl

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using Documenter, FresnelIntegrals
2+
using Documenter.Remotes
23

34
makedocs(sitename="FresnelIntegrals.jl")
45

@@ -7,12 +8,12 @@ DocMeta.setdocmeta!(FresnelIntegrals, :DocTestSetup, :(using FresnelIntegrals);
78
makedocs(;
89
modules=[FresnelIntegrals],
910
authors="Kiran Shila <[email protected]> and contributors",
10-
repo="https://github.com/kiranshila/FresnelIntegrals.jl/blob/{commit}{path}#{line}",
11+
repo=Remotes.GitHub("kiranshila","FresnelIntegrals.jl"),
1112
sitename="FresnelIntegrals.jl",
1213
format=Documenter.HTML(;
1314
prettyurls=get(ENV, "CI", "false") == "true",
1415
canonical="https://kiranshila.github.io/FresnelIntegrals.jl",
15-
edit_link="main",
16+
edit_link="master",
1617
assets=String[],
1718
),
1819
pages=[
@@ -21,6 +22,6 @@ makedocs(;
2122
)
2223

2324
deploydocs(;
24-
repo="github.com/kiranshila/FresnelIntegrals.jl",
25-
devbranch="main",
25+
repo="github.com/kiranshila/FresnelIntegrals.jl.git",
26+
devbranch="master",
2627
)

0 commit comments

Comments
 (0)