Skip to content

macos install erlang support #84

macos install erlang support

macos install erlang support #84

Workflow file for this run

name: Shelltests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}-shelltest
jobs:
run:
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest"]
runs-on: ${{ matrix.os }}
permissions:
contents: read
packages: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install just
uses: extractions/setup-just@v1
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
- name: Install shelltestrunner
run: brew install shelltestrunner
- name: Build beamup
run: cargo build
- name: Run Shelltests
if: ${{ matrix.os == 'ubuntu-latest' }}
run: just shelltests
- name: Run MacOS ShellTests
if: ${{ matrix.os == 'macos-latest' }}
run: |
just shelltests-macos