Skip to content

v2.14.0

v2.14.0 #318

Workflow file for this run

name: CI
on:
push:
release:
types: [published]
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
# The versions should contain (at least) the lowest requirement
# and a version that is more up to date.
toit-version: [ v2.0.0-alpha.189, latest ]
include:
- toit-version: v2.0.0-alpha.189
version-name: old
- toit-version: latest
version-name: new
name: CI - ${{ matrix.os }} - ${{ matrix.version-name }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: toitlang/action-setup@v1
with:
toit-version: ${{ matrix.toit-version }}
- name: Install shell completion test dependencies (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y fish
- name: Install shell completion test dependencies (macOS)
if: runner.os == 'macOS'
run: |
brew install tmux fish
- name: Test
run: |
make test