-
-
Notifications
You must be signed in to change notification settings - Fork 52
29 lines (26 loc) · 711 Bytes
/
verify_release.yaml
File metadata and controls
29 lines (26 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: Verify Release
on:
workflow_dispatch:
inputs:
version:
description: 'The release version to test'
required: true
type: string
permissions:
contents: none
jobs:
test_package:
name: Test Package
runs-on: ubuntu-24.04
strategy:
matrix:
python: ["2.7", "3.3", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
container:
image: danielflook/python-minifier-build:python${{ matrix.python }}-2025-09-26
steps:
- name: Test
env:
VERSION: ${{ inputs.version }}
run: |
pip${{ matrix.python }} install "python-minifier==$VERSION"
pyminify --version