Skip to content

Commit

Permalink
Update CI pipeline jobs to install Poetry from PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
mmerklinger committed Jan 8, 2025
1 parent 334d4a8 commit 2482c81
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:
- name: Install required packages
run: |
apt update
apt install -y python3-poetry make
apt install -y make
pip install poetry
- name: Create virtual environment
run: make init
- name: Check code format
Expand All @@ -42,7 +43,8 @@ jobs:
- name: Install required packages
run: |
apt update
apt install -y python3-poetry make
apt install -y make
pip install poetry
- name: Create virtual environment
run: make init
- name: Check code import format
Expand All @@ -57,7 +59,8 @@ jobs:
- name: Install required packages
run: |
apt update
apt install -y python3-poetry make
apt install -y make
pip install poetry
- name: Create virtual environment
run: make init
- name: Check code style
Expand All @@ -72,7 +75,8 @@ jobs:
- name: Install required packages
run: |
apt update
apt install -y python3-poetry make libglib2.0-dev
apt install -y make libglib2.0-dev
pip install poetry
- name: Create virtual environment
run: make init
- name: Check code static typing
Expand All @@ -96,7 +100,8 @@ jobs:
- name: Install required packages
run: |
dnf makecache
dnf install -y gcc make poetry python python-pip python3-devel rpm-build systemd-devel which
dnf install -y gcc make python python-pip python3-devel rpm-build systemd-devel which
pip install poetry
- name: Create virtual environment
run: make init
- name: Check versions
Expand All @@ -115,7 +120,8 @@ jobs:
- name: Install required packages
run: |
apt update
apt install -y make python3-poetry
apt install -y make
pip install poetry
- name: Create virtual environment
run: make init
- name: Check versions
Expand Down

0 comments on commit 2482c81

Please sign in to comment.