Merge pull request #910 from pillar-markup/Pharo13 #499
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MicroDown tests | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
on: | |
push: | |
branches: | |
- dev | |
- master | |
pull_request: | |
branches: | |
- dev | |
- master | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest, macos-latest ] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: hpi-swa/setup-smalltalkCI@v1 | |
id: smalltalkci | |
with: | |
smalltalk-image: Pharo64-alpha | |
- run: smalltalkci -s ${{ steps.smalltalkci.outputs.smalltalk-image }} | |
shell: bash | |
timeout-minutes: 15 |