Skip to content

Commit

Permalink
enable CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jecisc committed Feb 23, 2023
1 parent 70804ab commit 7f5ed53
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on: [ push, pull_request ]

jobs:
build:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
strategy:
matrix:
smalltalk: [ Pharo64-9.0, Pharo64-10, Pharo64-11 ]
name: ${{ matrix.smalltalk }}
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
13 changes: 13 additions & 0 deletions .smalltalk.ston
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
SmalltalkCISpec {
#loading : [
SCIMetacelloLoadSpec {
#baseline : 'MathRandomNumbers',
#directory : 'src'
}
],
#testing : {
#coverage : {
#packages : [ 'Math-RandomNumbers*' ]
}
}
}

0 comments on commit 7f5ed53

Please sign in to comment.