aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/macos_test.yml
blob: 9f88d77dcd75b9005223bcedb66a9622b0f376d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: macos_ci

on: [push, pull_request]

jobs:
  build-native:
    strategy:
      matrix:
        os: [macos-13, macos-12]
        arch: [arm64, x86_64]
    runs-on: ${{ matrix.os }}
    continue-on-error: false
    env:
      ARCH: ${{ matrix.arch }}
    name: ${{ matrix.os }} - ${{ matrix.arch }}
    steps:
    - name: Install packages for macos
      run: brew install automake
    - uses: actions/checkout@main
    - name: Run CI script
      run: ./scripts/test