-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (39 loc) · 1.03 KB
/
ci.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
# Based on tutorial: https://autobencoder.com/2020-08-24-conda-actions/
name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
DISPLAY: ":99"
PYDM_DEFAULT_PROTOCOL: ca
BLUESKY_DEBUG_CALLBACKS: 1
jobs:
build-linux:
defaults:
run:
shell: bash -l {0}
runs-on: ubuntu-22.04
strategy:
max-parallel: 5
steps:
- uses: actions/checkout@v3
- name: Install \{
run: pip install -e ".[dev]"
- name: Environment info
run: |
env
pip freeze
- name: Lint
run: |
# Check for syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# Make sure black code formatting is applied
black --check --preview src/
# Make sure import orders are correct
isort --check src/
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics