Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mumez authored Feb 3, 2024
1 parent 3dbe1e9 commit dbb0fca
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: smalltalkCI

on: [push]

jobs:
test:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
smalltalk: [Pharo64-11, Squeak64-6.0]
experimental: [false]
continue-on-error: ${{ matrix.experimental }}
name: ${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v3
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- name: Run tests
run: smalltalkci -s ${{ matrix.smalltalk }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: bash
timeout-minutes: 20

0 comments on commit dbb0fca

Please sign in to comment.