From 509dc8f4f85be09296f533081cd4f2cb3c4658f0 Mon Sep 17 00:00:00 2001 From: JloveUOA Date: Wed, 11 Sep 2024 11:51:51 +1200 Subject: [PATCH] install latest gnupg and compatible pythons --- .github/workflows/pull_request.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index c7d3042..6c1f1bf 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.10"] + python-version: ["3.10","3.12"] name: Python ${{ matrix.python-version }} steps: - uses: actions/checkout@v1 @@ -19,6 +19,10 @@ jobs: with: python-version: ${{ matrix.python-version }} + - name: Install GPG + run: sudo apt update && sudo apt install -y gnupg + + - name: Install Poetry uses: snok/install-poetry@v1