Skip to content

Commit

Permalink
Improving test code
Browse files Browse the repository at this point in the history
  • Loading branch information
DavyLandman committed Sep 23, 2024
1 parent 404eeb6 commit 37ef331
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@ jobs:
runs-on: buildjet-2vcpu-ubuntu-2204
steps:
- uses: actions/checkout@v4
name: 'Checkout rascal'
name: 'Checkout rascal (${{ inputs.rascal_version }})'
with:
repository: 'usethesource/rascal'
ref: ${{ inputs.rascal_version }}
path: 'deps/rascal'
- uses: actions/checkout@v4
name: 'Checkout typepal'
name: 'Checkout typepal (${{ inputs.typepal_version }})'
with:
repository: 'usethesource/typepal'
ref: ${{ inputs.typepal_version }}
path: 'deps/typepal'
- uses: actions/checkout@v4
name: 'Checkout rascal-core'
name: 'Checkout rascal-core (${{ inputs.rascal_core_version }})'
with:
repository: 'usethesource/rascal-core'
ref: ${{ inputs.rascal_core_version }}
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/smoke-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,22 @@ jobs:
runs-on: buildjet-2vcpu-ubuntu-2204
steps:
- uses: actions/checkout@v4
name: 'Checkout rascal'
name: 'Checkout own test-code'

- uses: actions/checkout@v4
name: 'Checkout rascal (${{ inputs.rascal_version }})'
with:
repository: 'usethesource/rascal'
ref: ${{ inputs.rascal_version }}
path: 'deps/rascal'
- uses: actions/checkout@v4
name: 'Checkout typepal'
name: 'Checkout typepal (${{ inputs.typepal_version }})'
with:
repository: 'usethesource/typepal'
ref: ${{ inputs.typepal_version }}
path: 'deps/typepal'
- uses: actions/checkout@v4
name: 'Checkout rascal-core'
name: 'Checkout rascal-core (${{ inputs.rascal_core_version }})'
with:
repository: 'usethesource/rascal-core'
ref: ${{ inputs.rascal_core_version }}
Expand All @@ -56,7 +59,6 @@ jobs:
find deps/rascal/target -name 'rascal-*.jar' -exec mv '{}' deps/rascal/rascal.jar \;
rm -rf deps/rascal/target
- uses: actions/checkout@v4
- name: Typecheck fast-set
run: |
Expand Down

0 comments on commit 37ef331

Please sign in to comment.