Baseline changes for P13 #212
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: GLORP Integration Tests | |
on: [push,pull_request,workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
smalltalk: [ Pharo64-9.0, Pharo64-10, Pharo64-11, Pharo64-12 ] | |
name: ${{ matrix.smalltalk }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install SQLite3 | |
run: ./scripts/install-SQLite3.sh | |
- name: Set up Smalltalk CI | |
uses: hpi-swa/setup-smalltalkCI@v1 | |
with: | |
smalltalk-image: ${{ matrix.smalltalk }} | |
- name: Load Image and Run Integration Tests | |
run: smalltalkci -s ${{ matrix.smalltalk }} .smalltalkci/.GLORP.ston | |
timeout-minutes: 15 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
name: GLORP-Integration-Tests-${{matrix.smalltalk}} | |
token: ${{ secrets.CODECOV_TOKEN }} |