acifani / setup-tinygo

GitHub action to setup a TinyGo environment

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

setup-tinygo

Check dist/ Validate

This actions sets up a TinyGo environment for GitHub Actions.

Usage

Basic

steps:
  - uses: actions/checkout@v2
  - uses: acifani/setup-tinygo@v1
    with:
      tinygo-version: '0.27.0'

With matrix expansion

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        tinygo: ['0.26.0', '0.27.0']
    name: TinyGo ${{ matrix.tinygo }}
    steps:
      - uses: actions/checkout@v2
      - uses: acifani/setup-tinygo@v1
        with:
          tinygo-version: ${{ matrix.tinygo }}

With custom Go version

TinyGo needs Go and, by default, this action will use whatever version is available in the runner. If you want to control the Go version, you can use actions/setup-go before acifani/setup-tinygo

steps:
  - uses: actions/checkout@v2
  - uses: actions/setup-go@v2
    with:
      go-version: 1.19
  - uses: acifani/setup-tinygo@v1
    with:
      tinygo-version: '0.27.0'

With custom Binaryen version

This action will install Binaryen which is needed for building WASM on Windows and MacOS. You can customize the version with the dedicated input value

steps:
  - uses: actions/checkout@v2
  - uses: acifani/setup-tinygo@v1
    with:
      tinygo-version: '0.27.0'
      binaryen-version: '110'

Without Binaryen

If you don't need Binaryen, you can omit the installation

steps:
  - uses: actions/checkout@v2
  - uses: acifani/setup-tinygo@v1
    with:
      tinygo-version: '0.27.0'
      install-binaryen: 'false'

About

GitHub action to setup a TinyGo environment

License:MIT License


Languages

Language:TypeScript 91.7%Language:Shell 7.2%Language:Go 1.1%