From a39e3cca79921db49ba50bb602c956df7bd8b8be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ana=20Mar=C3=ADa=20Mart=C3=ADnez=20G=C3=B3mez?= Date: Fri, 21 Aug 2020 14:52:11 +0200 Subject: [PATCH] ci: test all supported Python versions I assume once we migrate to Python3, we want to support Python 3.6-9. Python 3.5 will stop receiving security fixes next month, so I don't think we need to support it. As running the test as many times as we want is free, run them for all supported versions to ensure capa work in all of them. --- .github/workflows/tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index eea8f344..31742757 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -48,7 +48,10 @@ jobs: matrix: include: - python: 2.7 + - python: 3.6 + - python: 3.7 - python: 3.8 + - python: '3.9.0-alpha - 3.9.x' # Python latest steps: - name: Checkout capa with submodules uses: actions/checkout@v2