We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.blog/changelog/2024-01-30-github-actions-macos-14-sonoma-is-now-available/
name: CoreML Tools CI on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build-linux: # ... (Existing Linux configuration) build-macos: # ... (Existing macOS configuration) build-macos-sonoma: runs-on: macos-14 # Uses macOS 14 Sonoma steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: python-version: <desired Python version> # e.g., '3.10' - name: Install dependencies run: pip install -r requirements.txt - name: Run unit tests run: pytest - name: Additional Sonoma-specific tests # If any arise run: ...
The text was updated successfully, but these errors were encountered:
@johnnynunez - what feature are you requesting here?
Sorry, something went wrong.
CI for tests. build whl and more. Now it's possible to run with native mac. I don't see tets for my PR #2143
No branches or pull requests
https://github.blog/changelog/2024-01-30-github-actions-macos-14-sonoma-is-now-available/
The text was updated successfully, but these errors were encountered: