Skip to content

build(deps): bump torch in the pip group across 1 directory #7

build(deps): bump torch in the pip group across 1 directory

build(deps): bump torch in the pip group across 1 directory #7

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
source-checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Compile Python sources
run: python -m compileall src
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
- name: Install desktop dependencies without postinstall packaging
run: npm ci --ignore-scripts
- name: Check Electron JavaScript syntax
run: node --check electron/main.js && node --check electron/preload.js