We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d3904b commit cf83540Copy full SHA for cf83540
.github/workflows/CI.yml
@@ -18,17 +18,9 @@ jobs:
18
with:
19
channel: '1.10'
20
21
- - uses: julia-actions/cache@v2
22
-
23
- - uses: julia-actions/julia-buildpkg@v1
24
25
- - name: Build
26
- run: |
27
- julia -e 'using Pkg; Pkg.develop(Pkg.PackageSpec(path="../ReactionMechanismSimulator.jl/")); Pkg.build("ReactionMechanismSimulator");'
28
29
- - name: Run tests
+ - name: Build and Test
30
run: |
31
- julia -e 'using Pkg; Pkg.test("ReactionMechanismSimulator"; coverage=true)'
+ julia -e 'using Pkg; Pkg.develop(Pkg.PackageSpec(path="../ReactionMechanismSimulator.jl/")); Pkg.build("ReactionMechanismSimulator"); Pkg.test("ReactionMechanismSimulator"; coverage=true)'
32
33
- uses: julia-actions/julia-processcoverage@v1
34
0 commit comments