Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyjor committed Feb 11, 2025
1 parent 9cacbcc commit 5797d22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,9 @@ jobs:
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- name: Build Editor Package
working-directory: ./src/editor/JulGameEditor
run: julia -e 'using Pkg; Pkg.activate("."); Pkg.build();'
- name: Test Editor Package
working-directory: ./src/editor/JulGameEditor
run: julia -e 'using Pkg; Pkg.activate("."); Pkg.test();'
run: julia -e 'using Pkg; Pkg.activate("."); Pkg.add(path=joinpath("..","..","..")); Pkg.test();'
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4-beta
env:
Expand Down
4 changes: 1 addition & 3 deletions src/editor/JulGameEditor/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
CImGui = "~2.0"
FileWatching = "1.11.0"
JSON3 = "1"
JulGame = "0.1.0"
SimpleDirectMediaLayer = "0.5"
julia = "1.9"

Expand All @@ -26,6 +27,3 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]

[sources]
JulGame = {path = "../../../src/JulGame.jl"}

0 comments on commit 5797d22

Please sign in to comment.