-
Notifications
You must be signed in to change notification settings - Fork 9
40 lines (38 loc) · 1 KB
/
updatesnaptests.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
name: UpdateSnapTests
on:
pull_request:
paths:
- 'updatesnap/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install pylint
python3 -m pip install flake8
python3 -m pip install requests
python3 -m pip install pyyaml
python3 -m pip install python-debian
python3 -m pip install packaging
python3 -m pip install gitpython
- name: Code tests
env:
GITHUB_USER: ubuntu
GITHUB_TOKEN: ${{ inputs.token }}
run: |
cd updatesnap
./unittests.py
- name: Analysing the code with pylint and flake8
run: |
cd updatesnap
./style_check.sh