Skip to content

Remove CI for homebrew #4330

Remove CI for homebrew

Remove CI for homebrew #4330

Workflow file for this run

# https://help.github.com/en/articles/workflow-syntax-for-github-actions
name: CI macOS
on:
push:
branches:
- "**"
paths-ignore:
- ".github/workflows/cache_*.yml"
- "docker/dev/**"
pull_request:
branches:
- "**"
paths-ignore:
- ".github/workflows/cache_*.yml"
- "docker/dev/**"
schedule:
# Cron syntax: [minute hour day_of_the_month month day_of_the_week]
- cron: "0 2 * * 0,3" # Run every Sunday and Wednesday at 02:00
workflow_dispatch:
jobs:
build:
name: ${{ matrix.os == 'macos-latest-large' && 'mac-x86_64' || 'mac-arm64' }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, macos-latest-large]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pixi
uses: prefix-dev/[email protected]
with:
cache: true
- name: Check Lint
run: pixi run check-lint
- name: Test DART and dartpy
run: |
pixi run test-all
- name: Install
run: |
pixi run install