Skip to content

Commit

Permalink
Add editor test hopefully
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyjor committed Feb 11, 2025
1 parent 549449d commit 9cacbcc
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
- windows-latest
arch:
- x64
- x86
exclude:
- os: macOS-latest
arch: x86
#- x86
#exclude:
#- os: macOS-latest
# arch: x86
steps:
- uses: actions/checkout@v2
- run: sudo apt-get install xvfb && Xvfb :99 &
Expand Down Expand Up @@ -78,9 +78,13 @@ jobs:
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
with:
working-directory: ./src/editor/JulGameEditor
- 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();'
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4-beta
env:
Expand Down

0 comments on commit 9cacbcc

Please sign in to comment.