Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,25 @@ env:
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the development branch
on:
# Run on push and pull requests on any branch, but ignore if change doesn't affect code.
push:
branches:
- master
paths-ignore:
- 'README.md'
- 'docs/**'
pull_request:
paths-ignore:
- 'README.md'
- 'docs/**'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:


jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
smalltalk: [ Pharo64-9.0, Pharo64-10, Pharo64-11, Pharo64-12 ]
smalltalk: [ Pharo64-11, Pharo64-12, Pharo64-13, Pharo64-14 ]
runs-on: ubuntu-latest
name: ${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ BaselineOfAIDataGenerator >> baseline: spec [
spec package: 'AI-DataGenerator'.
spec package: 'AI-DataGenerator-Tests' with: [ spec requires: #( 'AI-DataGenerator' ) ].

spec baseline: 'PolyMath' with: [ spec repository: 'github://PolyMathOrg/PolyMath:master/src' ] ]
spec baseline: 'PolyMath' with: [ spec repository: 'github://PolyMathOrg/PolyMath:master/src' ].
spec baseline: 'DataFrame' with: [ spec repository: 'github://PolyMathOrg/DataFrame/src' ] ]
]
Loading