Skip to content

Commit

Permalink
Attempt at better test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-Lemmens committed Jul 13, 2024
1 parent b0fc821 commit 17ab312
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,14 @@ jobs:
arch:
- x64
steps:
# General Julia setup
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v2
# Test AbstractXsdTypes.jl
- uses: julia-actions/julia-buildpkg@v1
with:
project: AbstractXsdTypes.jl
Expand All @@ -44,3 +46,15 @@ jobs:
- uses: julia-actions/julia-processcoverage@v1
with:
directories: AbstractXsdTypes.jl/src
# Test XsdToStruct.jl
- name: Install local dependencies
run: julia --project=XsdToStruct.jl -e 'using Pkg; Pkg.add("../AbstractXsdTypes.jl");'
- uses: julia-actions/julia-buildpkg@v1
with:
project: XsdToStruct.jl
- uses: julia-actions/julia-runtest@v1
with:
project: XsdToStruct.jl
- uses: julia-actions/julia-processcoverage@v1
with:
directories: XsdToStruct.jl/src

0 comments on commit 17ab312

Please sign in to comment.