forked from cds-astro/ipyaladin
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (35 loc) · 825 Bytes
/
Copy pathcodestyle-check.yml
File metadata and controls
35 lines (35 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: codestyle
on:
push:
branches:
- master
pull_request:
branches:
- master
- dev
# Allows to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
codestyle:
runs-on: ubuntu-latest
steps:
- name: "Checkout branch"
uses: actions/checkout@v4
- name: "Set up Python on Ubuntu"
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: "Set up npm"
uses: actions/setup-node@v4
with:
node-version: 20
- name: "JS codestyle"
run: |
npm install prettier
npx prettier --check .
- name: "Python codestyle"
run: |
pip install ".[dev]"
pip install ruff
ruff format --check .
ruff check --no-fix .