This PR finishes the hierarchy merge for the BTree and SkipList pages #1079
Workflow file for this run
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: CI | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the development branch | |
on: | |
pull_request: | |
types: [assigned, opened, synchronize, reopened] | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
strategy: | |
matrix: | |
pharoversion: [ Pharo64-12, Pharo64-11 ] | |
name: ${{ matrix.pharoversion }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: hpi-swa/setup-smalltalkCI@v1 | |
id: smalltalkci | |
with: | |
smalltalk-version: ${{ matrix.pharoversion }} | |
- run: smalltalkci -s ${{ steps.smalltalkci.outputs.smalltalk-version }} | |
shell: bash | |
timeout-minutes: 15 | |