Skip to content

Commit

Permalink
Merge pull request #14 from mumez/feature/add_CI
Browse files Browse the repository at this point in the history
Added GitHub Actions CI workflow configuration.
  • Loading branch information
mumez authored Feb 1, 2023
2 parents a9c995a + 02d04da commit 9254333
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: smalltalkCI

on: [push]

jobs:
test:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
smalltalk: [Pharo64-10]
experimental: [false]
continue-on-error: ${{ matrix.experimental }}
name: ${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v3
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- name: Run tests
run: smalltalkci -s ${{ matrix.smalltalk }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: bash
timeout-minutes: 20
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 : 'SIXX',
#directory : 'repository',
#load : [ 'default' ],
#onConflict : #useLoaded,
#useLatestMetacello : false,
#onWarningLog : true,
#platforms : [ #pharo ]
}
]
}

0 comments on commit 9254333

Please sign in to comment.