Fork me on GitHub

  Notes


This set of chapters introduce you to the main concepts of Wollok programming language (they are all written in spanish):

Github Actions integration

If you look for Github Actions integration, here's a build.yml file example (which should be in .github/workflows folder) for a common Wollok project with tests


# .github/workflows/build.yml
# GitHub Actions documentation
# => https://docs.github.com/en/actions
name: build

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on: [push, pull_request]
jobs:
  gradle:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v1
      - uses: actions/setup-java@v1
        with:
          java-version: 14

      # Execute Gradle commands in GitHub Actions workflows
      - run: |
          git clone https://github.com/uqbar-project/wollok-cli
          wollok-cli/wollok test
        shell: bash


For further information please visit wollok-cli project