Skip to content

With {{}}?

With {{}}? #2

Workflow file for this run

name: CI
on:
push:
branches:
- "*"
- "*/*"
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
versions: [v2.0.0-alpha.130, latest, ""]
runs-on: ${{ matrix.os }}
steps:
- name: Setup with version argument
if: ${{ matrix.versions != '' }}
uses: toitlang/action-setup@{{ github.sha }}
with:
toit-version: v2.0.0-alpha.130
- name: Setup without version argument
if: ${{ matrix.versions == '' }}
uses: toitlang/action-setup@{{ github.sha }}