-
Notifications
You must be signed in to change notification settings - Fork 58
43 lines (43 loc) · 1.39 KB
/
openstudio_standards_database.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
# This workflow will check formatting with Black, install Python dependencies,
# and run tests with pytest
on:
pull_request:
path:
- 'data/openstudio_standards_data'
jobs:
black-formatting-check:
name: Black formatting check
runs-on: 'ubuntu-latest'
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
# This will halt the action if formatting fails
# Note: This will also fail if there are syntax errors
- uses: psf/black@stable
with:
version: "22.12.0"
run-unit-tests:
name: Run unit tests
runs-on: 'ubuntu-latest'
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pipenv'
- name: Install pipenv
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
working-directory: 'data/openstudio_standards_data'
- name: Install dpendencies
run: pipenv install --dev
working-directory: 'data/openstudio_standards_data'
- name: Run pytests
# This will halt the action if any of the tests fail
run: pipenv run pytest -v
working-directory: 'data/openstudio_standards_data'