Skip to content

Merge aec86529e86075a65684bb7d161088615a0f1577 #8

Merge aec86529e86075a65684bb7d161088615a0f1577

Merge aec86529e86075a65684bb7d161088615a0f1577 #8

Workflow file for this run

name: Tests
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
smalltalk: [ Moose64-10, Moose64-11, Moose64-12 ]
name: ${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v4
- name: Install Maven
run: sudo apt-get update && sudo apt-get install -y maven
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- name: Run tests
run: smalltalkci -s ${{ matrix.smalltalk }}
shell: bash
timeout-minutes: 15
- name: Upload coverage
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}