Skip to content

Commit

Permalink
Enable CI for the tcap module
Browse files Browse the repository at this point in the history
  • Loading branch information
zecke committed Aug 8, 2020
1 parent 17ba26f commit cb0854c
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.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: ${{ matrix.os }}
strategy:
matrix:
# Select platform(s)
os: [ ubuntu-latest, macos-latest, windows-latest ]
# Select compatible Smalltalk image(s)
smalltalk: [ Pharo64-8.0 ]
name: ${{ matrix.smalltalk }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-version: ${{ matrix.smalltalk }}
- run: smalltalkci -s ${{ matrix.smalltalk }}
timeout-minutes: 15
11 changes: 11 additions & 0 deletions .smalltalk.ston
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
SmalltalkCISpec {
#loading : [
SCIMetacelloLoadSpec {
#baseline : 'TCAP',
#directory : 'source',
#platforms : [ #pharo ],
#load: [ 'all' ]
}
]
}

0 comments on commit cb0854c

Please sign in to comment.