Skip to content

Restored runs-on to include all matrix entries #18

Restored runs-on to include all matrix entries

Restored runs-on to include all matrix entries #18

Workflow file for this run

name: smalltalkCI
on:
push:
pull_request:
branches:
master
schedule:
- cron: "15 2 15 * *" #run job on the 4th day of every month on the 15th minute of the 2nd hour
jobs:
build:
strategy:
fail-fast: false
runs-on: ${{ matrix.os }}

Check failure on line 15 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / smalltalkCI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 15, Col: 7): Unexpected value 'runs-on' .github/workflows/ci.yml (Line: 13, Col: 5): Required property is missing: runs-on
matrix:
os: [ ubuntu-20.04, ubuntu-22.04 ]
smalltalk: [ 3.6.6, 3.6.8, 3.7.0, 3.7.1 ]
include:
- smalltalk: 3.7.1
os: macos-14
#- smalltalk: 3.7.0
# os: macos-13
#- smalltalk: 3.7.0
# os: macos-12
- smalltalk: 3.6.8
os: macos-13
- smalltalk: 3.6.8
os: macos-12
- smalltalk: 3.6.6
os: macos-13
- smalltalk: 3.6.6
os: macos-12
continue-on-error: ${{ matrix.experimental }}
name: ${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v2
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- name: Run tests
run: smalltalkci -s ${{ matrix.smalltalk }}
shell: bash
timeout-minutes: 20
slack-workflow-status:
if: always()
name: Post Workflow Status To Slack
needs:
- build
runs-on: ubuntu-18.04
steps:
- name: Slack Workflow Notification
uses: Gamesight/slack-workflow-status@master
with:
repo_token: ${{secrets.GITHUB_TOKEN}}
slack_webhook_url: ${{secrets.SLACK_DALEHENRICH}}
name: 'action run'