Feat/sm layer detection #593
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check PR | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
check-pr: | |
if: github.head_ref != 'release' | |
runs-on: macos-12 | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v4 | |
- uses: Homebrew/actions/setup-homebrew@master | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: "13.3.1" | |
- uses: ningenMe/[email protected] | |
- uses: turtlebrowser/get-conan@main | |
- name: Install Make | |
run: brew install make | |
- name: Build Setup | |
run: make mac-setup | |
- name: Build Artifacts | |
env: | |
APPLE_XCODE_APP_NAME: Xcode_13.3.1.app | |
APPLE_MACOSX_SDK: MacOSX12.3 | |
run: make demo-player | |
- name: Run Tests | |
run: make test | |
- name: Run Clippy | |
run: make clippy | |
# Make sure CI fails on all warnings, including Clippy lints | |
env: | |
RUSTFLAGS: "-Dwarnings" |