From 905b3328128f7b02040f410cd4c7cc6ed04e097d Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 21 Oct 2024 10:02:48 -0400 Subject: [PATCH] python things --- .github/workflows/tests.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3d334eaba2..147fdba5fb 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -61,8 +61,9 @@ jobs: container: image: ${{ matrix.os }} strategy: + fail-fast: false matrix: - os: [ubuntu-latest, debian, archlinux, fedora-latest, gentoo, alpine] + os: [ubuntu-latest, debian, archlinux, fedora-latest, gentoo/python, python:3.10-alpine] steps: - uses: actions/checkout@v4 - name: Install Python @@ -74,10 +75,6 @@ jobs: pacman -Syu --noconfirm python python-pip elif [ -f /etc/fedora-release ]; then dnf install -y python3 python3-pip - elif [ -f /etc/gentoo-release ]; then - emerge dev-lang/python - elif [ -f /etc/alpine-release ]; then - apk add --no-cache python3 py3-pip fi - name: Install dependencies run: |