Skip to content

Commit

Permalink
170: Added smalltalkci test and associated GitHub action.
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtkilpela committed Jan 28, 2025
1 parent ef1b32e commit 5440add
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/unit-testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: RSR Unit Testing

on: [push]

jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
smalltalk:
- Pharo64-stable
- Pharo64-12
- Pharo64-11
name: ${{ matrix.smalltalk }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- run: smalltalkci -s ${{ matrix.smalltalk }}
shell: bash
timeout-minutes: 15
12 changes: 12 additions & 0 deletions .smalltalk.ston
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
SmalltalkCISpec {
#loading : [
SCIMetacelloLoadSpec {
#baseline : 'RemoteServiceReplication',
#load : [ 'All' ],
#directory : 'src',
#onWarningLog : true,
#platforms : [ #pharo ]
}
]
}

0 comments on commit 5440add

Please sign in to comment.