From c3867798205e513716bcb8b860aac2a6a4cffda1 Mon Sep 17 00:00:00 2001 From: Celyn Walters <3299161+celynw@users.noreply.github.com> Date: Sun, 28 Jan 2024 23:58:15 +0000 Subject: [PATCH] Change `workflow_dispatch` to a list of choices --- .github/workflows/main.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a4e509a..04d82f1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,8 +8,16 @@ on: python-version: description: "Python version" required: true - type: string - default: "3.12" + type: choice + options: + - 3.6 + - 3.7 + - 3.8 + - 3.9 + - 3.10 + - 3.11 + - 3.12 + - 3.13 jobs: test: