Skip to content

CoreML Tools

CoreML Tools #15

Workflow file for this run

name: CoreML Tools
on:
schedule:
# * is a special character in YAML so you have to quote this string
# Pytorch nightly is published around 5 hours after midnight PT
- cron: "30 13 1 * *"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
run-coremltools-survey:
runs-on: "macos-latest"
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4.2.0
with:
python-version: "3.10"
- name: Install dependencies
run: bash install.sh
- name: Run survey
run: python op_matrix/coremltools_op_survey.py
- name: 'Upload Artifact'
uses: actions/upload-artifact@v3
with:
name: op_survey_coremltools
path: output/op_survey_coremltools.json
retention-days: 31