Merge pull request #3 from tukanos/gemStoneUpdate #20
This file contains hidden or 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: | |
| gemstone | |
| schedule: | |
| - cron: "15 2 9 * *" #run job on the 9th day of every month on the 15th minute of the 2nd hour | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ ubuntu-latest ] | |
| smalltalk: [ GemStone64-3.7.2, GemStone64-3.7.4.3 ] | |
| runs-on: ${{ matrix.os }} | |
| 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-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' |