Skip to content

Merge pull request #122 from Rinzwind/fix-extensionmethods-sorting #55

Merge pull request #122 from Rinzwind/fix-extensionmethods-sorting

Merge pull request #122 from Rinzwind/fix-extensionmethods-sorting #55

Workflow file for this run

name: Tonel-dev
on: [ push, pull_request ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest ]
smalltalk: [ Pharo64-12 ]
runs-on: ${{ matrix.os }}
name: ${{ matrix.smalltalk }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup smalltalkCI
uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- name: Load Image and Run Tests
run: smalltalkci -s ${{ matrix.smalltalk }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
timeout-minutes: 15