Skip to content

Different names for linux/macos exe and so (#49) #111

Different names for linux/macos exe and so (#49)

Different names for linux/macos exe and so (#49) #111

Workflow file for this run

name: Lint Python with Ruff
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
lint:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install Ruff
run: pip install ruff
- name: Run Ruff
run: ruff check vmol/ examples/
working-directory: ./python