Skip to content

Remove MooseEasy

Remove MooseEasy #285

Workflow file for this run

name: Pull-request
on:
pull_request:
types: [assigned, opened, synchronize, reopened]
jobs:
# Get the content of the file versions.json. It is interpreted as a json data in the next job.
get-versions:
uses: ./.github/workflows/get-versions.yml
with:
file-path: $GITHUB_WORKSPACE/.github/workflows/versions.json
# Run tests on pharo versions described in the file pharo-versions.json
build:
runs-on: ubuntu-latest
needs:
- get-versions
strategy:
fail-fast: false
matrix:
smalltalk: ${{ fromJSON(needs.get-versions.outputs.versions).pharo-versions }}
name: ${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Option fetching all commits
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- run: smalltalkci -s ${{ matrix.smalltalk }}
shell: bash
timeout-minutes: 15