forked from ArgLab/writing_observer
-
Notifications
You must be signed in to change notification settings - Fork 2
35 lines (29 loc) · 728 Bytes
/
lint.yml
File metadata and controls
35 lines (29 loc) · 728 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: Lint
on: [push]
jobs:
lint-python:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install Make
run: sudo apt-get install make
- name: Lint files
run: make linting-python
lint-node:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: '22.x'
- name: Install Make
run: sudo apt-get install make
- name: Lint files
run: make linting-node