From 1e165b191b424c649ceb75c3b45ca22c5f550ee3 Mon Sep 17 00:00:00 2001 From: Marcus Denker Date: Wed, 13 May 2026 12:33:49 +0200 Subject: [PATCH] Create build.yml --- .github/workflows/build.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..0b4ace1 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,32 @@ +name: CI + +env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + +# Controls when the action will run. Triggers the workflow on push or pull request +# events but only for the development branch +on: + pull_request: + types: [assigned, opened, synchronize, reopened] + + push: + branches: + - main + +jobs: + build: + strategy: + fail-fast: false + matrix: + pharoversion: [ Pharo64-alpha, Pharo64-13 ] + name: ${{ matrix.pharoversion }} + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: hpi-swa/setup-smalltalkCI@v1 + id: smalltalkci + with: + smalltalk-version: ${{ matrix.pharoversion }} + - run: smalltalkci -s ${{ steps.smalltalkci.outputs.smalltalk-version }} + shell: bash + timeout-minutes: 15