-
Notifications
You must be signed in to change notification settings - Fork 24
47 lines (38 loc) · 1 KB
/
unix.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
45
46
47
name: Unix
on: [push, pull_request]
concurrency:
group: ${{ github.ref }}-${{ github.head_ref }}-unix
cancel-in-progress: true
jobs:
unittest:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.x'
- name: Install dependencies
run: |
python3 -m pip install -U pip
python3 -m pip install -r requirements.txt
python3 -m pip install -r tests/requirements.txt
- name: Install
run: python -m pip install -v .
- name: Run Unit Tests
run: python -m pytest tests/
pyflakes:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.x'
- name: Install dependencies
run: python3 -m pip install -U pyflakes
- name: pyflakes
run: python -m pyflakes lasy