File tree 6 files changed +142
-5
lines changed
6 files changed +142
-5
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ name : Bug report
3
+ about : Report Genie issues
4
+ title : ' '
5
+ labels : ' '
6
+ assignees : essenciary
7
+
8
+ ---
9
+
10
+ ** Describe the bug**
11
+ A clear and concise description of what the bug is.
12
+
13
+ ** Error stacktrace**
14
+ If any error is thrown, please copy from the REPL and paste it here
15
+
16
+ ** To reproduce**
17
+ Steps to reproduce the behavior and/or Julia code executed.
18
+
19
+ ** Expected behavior**
20
+ A clear and concise description of what you expected to happen.
21
+
22
+ ** Additional context**
23
+ Please include the output of
24
+ ` julia> versioninfo() `
25
+ and
26
+ ` pkg> st `
27
+
28
+ ---
29
+
30
+ ** Please answer these optional questions to help us understand, prioritise, and assign the issue**
31
+
32
+ 1/ Are you using Genie at work or for hobby/personal projects?
33
+
34
+ 2/ Can you give us, in a few words, some details about the app you're building with Genie?
35
+
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : Feature request
3
+ about : Suggest an idea for this project
4
+ title : ' '
5
+ labels : ' '
6
+ assignees : ' '
7
+
8
+ ---
9
+
10
+ ** Is your feature request related to a problem? Please describe.**
11
+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [ ...]
12
+
13
+ ** Describe the solution you'd like**
14
+ A clear and concise description of what you want to happen.
15
+
16
+ ** Describe alternatives you've considered**
17
+ A clear and concise description of any alternative solutions or features you've considered.
18
+
19
+ ** Additional context**
20
+ Add any other context or screenshots about the feature request here.
Original file line number Diff line number Diff line change
1
+ name : CompatHelper
2
+
3
+ on :
4
+ schedule :
5
+ - cron : ' 00 * * * *'
6
+ pull_request :
7
+ types : [opened, reopened]
8
+
9
+ jobs :
10
+ build :
11
+ runs-on : ${{ matrix.os }}
12
+ strategy :
13
+ matrix :
14
+ julia-version : [1.6]
15
+ julia-arch : [x86]
16
+ os : [ubuntu-latest]
17
+ steps :
18
+ - uses : julia-actions/setup-julia@latest
19
+ with :
20
+ version : ${{ matrix.julia-version }}
21
+ - name : Install dependencies
22
+ run : julia -e 'using Pkg; Pkg.add(Pkg.PackageSpec(url="https://github.com/bcbi/CompatHelper.jl.git"))'
23
+ - name : CompatHelper.main
24
+ env :
25
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
26
+ JULIA_DEBUG : CompatHelper
27
+ run : julia -e 'using CompatHelper; CompatHelper.main()'
Original file line number Diff line number Diff line change
1
+ name : TagBot
2
+ on :
3
+ issue_comment :
4
+ types :
5
+ - created
6
+ workflow_dispatch :
7
+ jobs :
8
+ TagBot :
9
+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : JuliaRegistries/TagBot@v1
13
+ with :
14
+ token : ${{ secrets.GITHUB_TOKEN }}
15
+ ssh : ${{ secrets.DOCUMENTER_KEY }}
Original file line number Diff line number Diff line change
1
+ name : ci
2
+ on :
3
+ - push
4
+ - pull_request
5
+ jobs :
6
+ test :
7
+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
8
+ runs-on : ${{ matrix.os }}
9
+ strategy :
10
+ fail-fast : false
11
+ matrix :
12
+ version :
13
+ - ' 1.6' # lts
14
+ - ' 1' # expands to the latest stable releaase of julia
15
+ - ' nightly'
16
+ os :
17
+ - ubuntu-latest
18
+ - macOS-latest
19
+ - windows-latest
20
+ arch :
21
+ - x64
22
+ steps :
23
+ - uses : actions/checkout@v2
24
+ - uses : julia-actions/setup-julia@latest
25
+ with :
26
+ version : ${{ matrix.version }}
27
+ arch : ${{ matrix.arch }}
28
+ - uses : julia-actions/julia-buildpkg@latest
29
+ - uses : julia-actions/julia-runtest@latest
30
+ build :
31
+ runs-on : ubuntu-latest
32
+ steps :
33
+ - uses : actions/checkout@v2
34
+ - uses : julia-actions/setup-julia@latest
35
+ with :
36
+ version : ' 1'
37
+ - name : Install dependencies
38
+ run : julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
39
+ - name : Build and deploy
40
+ env :
41
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
42
+ run : julia --project=docs/ docs/make.jl
Original file line number Diff line number Diff line change 1
1
name = " StippleTable"
2
2
uuid = " 5bb4b094-0818-496d-ae94-fd777e10e8ba"
3
- version = " 0.1 .0"
3
+ version = " 1.0 .0"
4
4
5
5
[deps ]
6
- DataFrames = " a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
7
6
Stipple = " 4acbeb90-81a0-11ea-1966-bdaff8155998"
8
7
StippleUI = " a3c5d34a-b254-4859-a8fa-b86abb7e84a3"
9
8
10
9
[compat ]
11
- Stipple = " 0.28, 0.29, 0.30"
12
- StippleUI = " 0.23"
13
- DataFrames = " 1.6.1"
10
+ Stipple = " 0.28"
11
+ StippleUI = " 0.23.4"
14
12
julia = " 1.6"
You can’t perform that action at this time.
0 commit comments