Skip to content

Preventing "Run to" debugger command from raising update events, in order to prevent unnecessary (and broken) updates #996

Preventing "Run to" debugger command from raising update events, in order to prevent unnecessary (and broken) updates

Preventing "Run to" debugger command from raising update events, in order to prevent unnecessary (and broken) updates #996

Workflow file for this run

name: NewTools
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PHARO_CI_TESTING_ENVIRONMENT: 1
on:
push:
branches: [ Pharo12, dev-1.0 ]
pull_request:
branches: [ Pharo12, dev-1.0 ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# 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 }} .smalltalk.ston
timeout-minutes: 15