Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/compathelper/new_version/2024-01…
Browse files Browse the repository at this point in the history
…-23-00-51-57-506-02882367714' into dev
  • Loading branch information
giopaglia committed Feb 2, 2024
2 parents 20b5dfe + 0c34e9f commit 5f49ca0
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Documentation
on:
push:
branches:
- main
tags: '*'
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: '1.9'
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
run: julia --project=docs/ docs/make.jl
9 changes: 8 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,17 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"

[compat]
HypothesisTests = "0.11"
HypothesisTests = "0.10 - 0.11"
SoleData = "0.12"
StatsBase = "0.30 - 0.34"
Random = "1"
Catch22 = "0.4, 0.5"
DataFrames = "1"
IterTools = "1"
OrderedCollections = "1"
PyCall = "1"
Reexport = "1"
Revise = "3"
julia = "1"

[extras]
Expand Down
5 changes: 4 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,8 @@ makedocs(;
)

deploydocs(;
repo="github.com/aclai-lab/SoleFeatures.jl",
repo = "github.com/aclai-lab/SoleFeatures.jl",
target = "build",
branch = "gh-pages",
versions = ["main" => "main", "stable" => "v^", "v#.#", "dev" => "dev"],
)

0 comments on commit 5f49ca0

Please sign in to comment.