Skip to content

Commit

Permalink
Create Pharo12CI.yml
Browse files Browse the repository at this point in the history
Add Pharo12 CI schedule
  • Loading branch information
labordep authored Aug 30, 2023
1 parent 45fb6bd commit 10e41cd
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/Pharo12CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: 'Pharo 12 CI'

on:
push:
branches:
- 'master'
pull_request:
types: [assigned, opened, synchronize, reopened]
schedule:
- cron: '0 12 * * 0'

jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
smalltalk: [ Pharo64-12 ]
runs-on: ${{ matrix.os }}
name: ${{ matrix.smalltalk }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- name: Load in New Image and Run Tests
run: smalltalkci -s ${{ matrix.smalltalk }} ${{ matrix.ston }}
shell: bash
timeout-minutes: 10
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 10e41cd

Please sign in to comment.