-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (26 loc) · 880 Bytes
/
builder.yml
File metadata and controls
28 lines (26 loc) · 880 Bytes
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
name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install System Deps
run: |
sudo apt install build-essential libpython3-dev libdbus-1-dev python3-gi python3-dev python3-gst-1.0 python-gi-dev
sudo apt install libglib2.0-dev libglib2.0-dev-bin libunwind-dev libtool m4 autoconf automake libgirepository1.0-dev libcairo2-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pylint
- name: Building code
run: |
python3 ./setup.py build