-
Notifications
You must be signed in to change notification settings - Fork 190
44 lines (40 loc) · 1.14 KB
/
core_code_checks.yml
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
36
37
38
39
40
41
42
43
44
name: Core Tests.
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.7.13
uses: actions/setup-python@v4
with:
python-version: '3.7.13'
- uses: actions/cache@v2
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}
- name: Install dependencies
run: |
pip install --upgrade --upgrade-strategy eager -e .[dev]
- name: Run license checks
run: |
./scripts/licensing/license_headers.sh --check
- name: Check notebook cell metadata
run: |
python ./scripts/docs/add_nb_tags.py --check
- name: Run isort
run: isort docs/ nerfstudio/ scripts/ tests/ --profile black --check
- name: Run Black
run: black docs/ nerfstudio/ scripts/ tests/ --check
- name: Python Pylint
run: |
pylint nerfstudio tests scripts
- name: Test with pytest
run: |
pytest