Skip to content

Commit d24f09a

Browse files
committed
Remove unneeded package and container set-up code from CI workflows
1 parent 55a3837 commit d24f09a

File tree

5 files changed

+4
-6
lines changed

5 files changed

+4
-6
lines changed

.github/workflows/flake8.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
pacman-key --init
1313
pacman --noconfirm -Sy archlinux-keyring
1414
pacman --noconfirm -Syyu
15-
pacman --noconfirm -Sy python-pip python-pyparted pkgconfig gcc
15+
pacman --noconfirm -Sy python-pip gcc
1616
- run: pip install --break-system-packages --upgrade pip
1717
# this will install the exact version of flake8 that is in the pyproject.toml file
1818
- name: Install archinstall dependencies

.github/workflows/mypy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
pacman-key --init
1313
pacman --noconfirm -Sy archlinux-keyring
1414
pacman --noconfirm -Syyu
15-
pacman --noconfirm -Sy python-pip python-pyparted pkgconfig gcc
15+
pacman --noconfirm -Sy python-pip gcc
1616
- run: pip install --break-system-packages --upgrade pip
1717
# this will install the exact version of mypy that is in the pyproject.toml file
1818
- name: Install archinstall dependencies

.github/workflows/pylint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
pacman-key --init
1313
pacman --noconfirm -Sy archlinux-keyring
1414
pacman --noconfirm -Syyu
15-
pacman --noconfirm -Sy python-pip python-pyparted pkgconfig gcc
15+
pacman --noconfirm -Sy python-pip gcc
1616
- run: pip install --break-system-packages --upgrade pip
1717
- name: Install Pylint and Pylint plug-ins
1818
run: pip install --break-system-packages .[dev]

.github/workflows/pytest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
pacman-key --init
1414
pacman --noconfirm -Sy archlinux-keyring
1515
pacman --noconfirm -Syyu
16-
pacman --noconfirm -Sy python-pip python-pyparted pkgconfig gcc
16+
pacman --noconfirm -Sy python-pip gcc
1717
- run: pip install --break-system-packages --upgrade pip
1818
- name: Install archinstall dependencies
1919
run: pip install --break-system-packages .[dev]

.github/workflows/ruff-format.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ name: ruff check formatting
33
jobs:
44
ruff_format_check:
55
runs-on: ubuntu-latest
6-
container:
7-
image: archlinux/archlinux:latest
86
steps:
97
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
108
- uses: astral-sh/ruff-action@eaf0ecdd668ceea36159ff9d91882c9795d89b49 # v3.4.0

0 commit comments

Comments
 (0)