Skip to content

Commit

Permalink
Merge 51c48e4
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanmontt committed Feb 7, 2025
2 parents fe83655 + 51c48e4 commit eebf61c
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the development branch
on:
push:
branches:
- main

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

0 comments on commit eebf61c

Please sign in to comment.