Skip to content

Commit

Permalink
improve tests, always cache
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Jul 1, 2024
1 parent a14cfcd commit 39a30d3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,20 @@ jobs:
java-version: '11'
distribution: 'adopt'
- name: Cache Maven packages
if: always()
uses: actions/cache@v4
with:
path: ~/.m2
key: lucee-script-runner-maven-cache
- name: Cache Test Artifacts
if: always()
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/tests/artifacts
key: test-artifacts
- name: Cache Lucee files
uses: actions/cache@v4
if: always()
with:
path: /home/runner/work/_actions/lucee/script-runner/main/lucee-download-cache
key: lucee-downloads
Expand Down
6 changes: 3 additions & 3 deletions tests/testStableReleaseBundles.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="data-provider-inte
});

it(title="5.3.12.1", body=function(){
checkRequiredBundlesAreSupported( "5.3.8.237" );
checkRequiredBundlesAreSupported( "5.3.12.1" );
});

it(title="5.3.11.5", body=function(){
checkRequiredBundlesAreSupported( "5.3.8.237" );
checkRequiredBundlesAreSupported( "5.3.11.5" );
});

it(title="5.3.9.173", body=function(){
checkRequiredBundlesAreSupported( "5.3.8.237" );
checkRequiredBundlesAreSupported( "5.3.9.173" );
});

it(title="5.3.8.237", body=function(){
Expand Down

0 comments on commit 39a30d3

Please sign in to comment.