Merge pull request #1846 from Rinzwind/method-history-browse-commit #779
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: Complete Test | |
on: | |
# Run on push and pull requests on any branch, but ignore if change doesn't affect code. | |
push: | |
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: | |
test: | |
strategy: | |
# Default value means that a failure in one OS cancels all | |
fail-fast: false | |
matrix: | |
smalltalk: [ Pharo64-alpha ] | |
os: [ ubuntu-latest, macos-latest ] | |
ston: [ .smalltalk.ston ] | |
# Test Windows with some exclusions. | |
# At least a part of the problem is reported here: | |
# https://github.com/pharo-vcs/iceberg/issues/1394 | |
include: | |
- smalltalk: Pharo64-alpha | |
os: windows-latest | |
ston: .smalltalk.windows.ston | |
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-version: ${{ matrix.smalltalk }} | |
- name: Load Image and Run Tests | |
run: smalltalkci -s ${{ matrix.smalltalk }} ${{ matrix.ston }} | |
shell: bash | |
timeout-minutes: 30 |