Skip to content

Issue #37: yml

Issue #37: yml #90

Workflow file for this run

name: smalltalkCI

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

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

(Line: 32, Col: 7): Job 'slack-workflow-status' depends on unknown job '-test'.
on:
push:
pull_request:
branches:
master
schedule:
- cron: "15 2 7 * *" #run job on the 7th day of every month on the 15th minute of the 2nd hour
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-22.04, ubuntu-24.04, macos-latest]
smalltalk: [ GemStone64-3.7.2, GemStone64-3.7.1, GemStone64-3.6.8 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: hpi-swa/setup-smalltalkCI@solo
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:
-test
runs-on: ubuntu-latest
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'