Skip to content

Added "Taking over pending entries" section #70

Added "Taking over pending entries" section

Added "Taking over pending entries" section #70

Workflow file for this run

name: smalltalkCI
on: [push]
jobs:
test:
runs-on: ubuntu-22.04
services:
redis:
image: redis/redis-stack:latest
ports:
- "6379:6379"
- "8001:8001"
strategy:
fail-fast: false
matrix:
smalltalk: [Pharo64-11, Pharo64-12]
experimental: [false]
continue-on-error: ${{ matrix.experimental }}
name: ${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v3
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- name: Run tests
run: smalltalkci -s ${{ matrix.smalltalk }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: bash
timeout-minutes: 60