fix: 🐛 resume playing from the current_frame after pause #59
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-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.9.1 | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v4 | |
- uses: Homebrew/actions/setup-homebrew@master | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- uses: ningenMe/setup-rustup@v1.1.0 | |
- name: Install Make | |
run: brew install make | |
- name: Build Setup | |
run: make mac-setup | |
- name: Build Artifacts | |
env: | |
APPLE_MACOSX_SDK: MacOSX13 | |
run: make demo-player |