Skip to content

Add x86-64 emulation support for Linux ARM test runners #6

Add x86-64 emulation support for Linux ARM test runners

Add x86-64 emulation support for Linux ARM test runners #6

Workflow file for this run

name: macOS
on:
push:
branches: [ main ]
pull_request:
jobs:
test-macos:
name: Install on macOS
strategy:
fail-fast: false
matrix:
# macos-13: Intel; macos-14, macos-15: ARM64
os: [ macos-15, macos-14, macos-13 ]
runs-on: ${{ matrix.os }}
concurrency:
group: '${{ github.workflow }}-${{ matrix.os }}-${{ github.head_ref || github.ref_name }}'
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- run: brew update-reset
- name: Add local tap for testing
run: brew tap expresslang/eep $GITHUB_WORKSPACE
- run: |
brew install --build-from-source --verbose expresslang/eep/eep
- run: brew audit --strict --formula expresslang/eep/eep
continue-on-error: true
- run: which eep
- run: eep -h
- run: brew test --verbose expresslang/eep/eep
- run: brew uninstall expresslang/eep/eep