File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Documentation
2+ on :
3+ push :
4+ branches :
5+ - master
6+ tags : ' *'
7+ pull_request :
8+ jobs :
9+ build :
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : actions/checkout@v2
13+ - uses : julia-actions/setup-julia@latest
14+ with :
15+ version : ' 1.5'
16+ - name : Install dependencies
17+ run : julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
18+ - name : Build and deploy
19+ env :
20+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
21+ run : julia --project=docs/ docs/make.jl
Original file line number Diff line number Diff line change 1+ docs /build /
Original file line number Diff line number Diff line change 11# PostgresORM.jl
22
33An Julia library for Object Relational Mapping between Julia and PostgreSQL.
4+
5+ ** Documentation** : [ ![ ] [ docs-stable-img ]] [ docs-stable-url ]
6+
7+ [ docs-latest-img ] : https://img.shields.io/badge/docs-latest-blue.svg
8+ [ docs-latest-url ] : http://dataframes.juliadata.org/latest/
9+
10+
11+ ** NOTES about this documentation**
12+ The documentation is created using
13+ [ https://github.com/JuliaDocs/Documenter.jl ] ( Documenter.jl ) .
14+ see [ docs] ( ./docs ) .
15+
16+ https://juliadocs.github.io/Documenter.jl/stable/man/guide/
Original file line number Diff line number Diff line change 1+ using Documenter, PostgresORM
2+
3+ makedocs (sitename= " PostgresORM documentation" ,
4+ modules = [PostgresORM],
5+ pages= [
6+ " Home" => " index.md"
7+ ])
8+ deploydocs (;repo= " github.com/JuliaPostgresORM/PostgresORM.jl" ,)
Original file line number Diff line number Diff line change 1+ # Hello world
You can’t perform that action at this time.
0 commit comments