Skip to content

Refactor proc macros #280

Refactor proc macros

Refactor proc macros #280

Workflow file for this run

name: mac
on:
push:
branches:
- stylus
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: macos-latest
name: (${{ matrix.target }}, ${{ matrix.cfg_release_channel }})
env:
CFG_RELEASE_CHANNEL: ${{ matrix.cfg_release_channel }}
strategy:
fail-fast: false
matrix:
target: [
aarch64-apple-darwin,
]
cfg_release_channel: [nightly, stable]
steps:
- name: checkout
uses: actions/checkout@v3
# Run build
- name: install rustup
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup-init.sh
sh rustup-init.sh -y --default-toolchain none
rustup target add ${{ matrix.target }}
- name: Build and Test
run: ./ci/build_and_test.sh