Restored runs-on to include all matrix entries #18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 GitHub Actions / smalltalkCIInvalid workflow file
|
||
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' |