Skip to content

SwaLintBrowser & RC #33

SwaLintBrowser & RC

SwaLintBrowser & RC #33

Workflow file for this run

name: mainTests
on:
push:
branches:
- main
pull_request:
branches:
- main
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
jobs:
# This workflow contains a single job called "build"
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# Select platform(s)
os: [ macos-latest ] # ubuntu-latest does not work with Squeak 5.x VMs
# Select compatible Smalltalk image(s)
smalltalk:
- Squeak64-trunk
- Squeak64-6.0
- Squeak64-5.3
- Squeak64-5.2
name: ${{ matrix.smalltalk }} on ${{ matrix.os }}
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: smalltalkci -s ${{ matrix.smalltalk }}
timeout-minutes: 15
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}