-
Notifications
You must be signed in to change notification settings - Fork 93
37 lines (29 loc) · 973 Bytes
/
tests.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
name: Python Tests
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Checks unittest
steps:
- name: Checkout branch
uses: actions/checkout@v3
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v35
with:
files: "**/*.py"
- name: Set up Python all python version
if: steps.chaged-files.output.any_changed == 'true'
uses: actions/setup-python@v3
with:
python-version: 3.9
- name: Install dependencies
if: steps.chaged-files.output.any_changed == 'true'
run: sudo apt-get install libgirepository1.0-dev
- run: pip install --upgrade pip
if: steps.chaged-files.output.any_changed == 'true'
- run: pip install .
if: steps.chaged-files.output.any_changed == 'true'
- name: Run Test
if: steps.chaged-files.output.any_changed == 'true'
run: python -m unittest