Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches:
- master
tags: '*'
tags: "*"
pull_request:

jobs:
Expand All @@ -19,18 +19,15 @@ jobs:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: '1'
version: "1"
- uses: julia-actions/cache@v2
- name: Install dependencies
shell: julia --color=yes --project=docs {0}
shell: julia --color=yes --project=. {0}
run: |
using Pkg
for pkg in ["GrothAlgebra", "GrothCurves", "GrothProofs"]
Pkg.develop(path=joinpath(pwd(), pkg))
end
Pkg.instantiate()
Pkg.instantiate(workspace=true)
- name: Build and deploy
run: julia --color=yes --project=docs docs/make.jl
run: julia --color=yes --project=. docs/make.jl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
7 changes: 4 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
*.jl.mem
*.jl.*.mem

# Manifest files - we track these for reproducibility
# Manifest.toml
# Manifest files - root Manifest.toml is canonical for workspace
**/Manifest.toml
!Manifest.toml

# System files
.DS_Store
Expand All @@ -23,7 +24,7 @@ Thumbs.db
/docs/site/

# Benchmark results
/benchmarks/results/
/benchmarks/artifacts/
*.benchmark

# Temporary files
Expand Down
302 changes: 0 additions & 302 deletions GrothAlgebra/Manifest.toml

This file was deleted.

4 changes: 3 additions & 1 deletion GrothAlgebra/Project.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
name = "GrothAlgebra"
uuid = "c7a79d44-cfd6-4e24-8a20-28d2d2e8370b"
authors = ["0xpantera <0xpantera@proton.me>"]
version = "1.0.0-DEV"
authors = ["0xpantera <0xpantera@proton.me>"]

[deps]
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
BitIntegers = "c3b6d118-76ef-56ca-8cc7-ebb389d030a1"
Primes = "27ebfcd6-29c5-5fa9-bf4b-fb8fc14df3ae"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"

[compat]
Primes = "0.5.7"
julia = "1.11, 1.12"

[extras]
Expand Down
Loading