Enhanced README.md with examples, performance comparisons, and key benefits of BST #8
Workflow file for this run
This file contains hidden or 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: CI | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [macos-latest, ubuntu-latest, windows-latest] | |
| smalltalk: [Pharo64-13, Pharo64-12, Pharo64-11, Pharo64-10] | |
| 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 and Test | |
| run: smalltalkci -s ${{ matrix.smalltalk }} | |
| shell: bash | |
| timeout-minutes: 15 |