Skip to content

Local modifications to fmt lib #872

Local modifications to fmt lib

Local modifications to fmt lib #872

Workflow file for this run

name: perlang-install
on: [push]
jobs:
install:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-20.04
- ubuntu-22.04
- macos-11
steps:
- uses: actions/checkout@v1
- name: Run perlang-install script
run: ./scripts/perlang-install
- name: Output perlang version
run: $HOME/.perlang/nightly/bin/perlang --version
# Windows need special treatment, since the default shell for Windows with
# GitHub actions is Powershell. We do not want to change to 'bash' for the
# other platforms though, since we want to ensure that the installer works on
# any POSIX compliant shell.
install_windows:
runs-on: windows-2019
steps:
- uses: actions/checkout@v1
- name: Run perlang-install script
run: ./scripts/perlang-install
shell: bash
- name: Output perlang version
run: $HOME/.perlang/nightly/bin/perlang --version
shell: bash