Skip to content

Commit

Permalink
feat: add a Gitpod Dockerfile (TheAlgorithms#147)
Browse files Browse the repository at this point in the history
Co-authored-by: Soc Virnyl S. Estela <socvirnyl.estela@gmail.com>
  • Loading branch information
Panquesito7 and Soc Virnyl S. Estela authored Oct 9, 2022
1 parent 5175468 commit dc7685c
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .gitpod.dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM gitpod/workspace-full-vnc

RUN sudo apt-get update /
&& sudo apt-get install julia
16 changes: 16 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
image:
file: .gitpod.dockerfile

github:
prebuilds:
addBadge: true
addComment: false
addCheck: false
master: true
branches: true
pullRequestsFromForks: true

vscode:
extensions:
- julialang.language-julia
- singularitti.vscode-julia-formatter
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"

[compat]
DataStructures = "0.18"
julia = "1.6"
julia = "1.8"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ Documentation for [TheAlgorithms](https://github.com/TheAlgorithms/Julia).

```@autodocs
Modules = [TheAlgorithms]
```
```
2 changes: 1 addition & 1 deletion src/TheAlgorithms.jl
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ include("math/combination.jl")
include("math/euler_method.jl")
include("math/eulers_totient.jl")
include("math/factorial.jl")
include("math/fibonacci.jl")
include("math/fibonacci.jl")
include("math/krishnamurthy_number.jl")
include("math/line_length.jl")
include("math/krishnamurthy_number.jl")
Expand Down
2 changes: 1 addition & 1 deletion src/math/fibonacci.jl
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,4 @@ function fib_iterative(n::Int)
end
return result
end
end
end

0 comments on commit dc7685c

Please sign in to comment.