From 56121349d77318985443c9466f0096e44889400e Mon Sep 17 00:00:00 2001 From: Alex Nelson Date: Tue, 10 May 2022 21:43:10 -0400 Subject: [PATCH 1/2] Change test Python versions to earliest and latest Signed-off-by: Alex Nelson --- .github/workflows/cicd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 226ed72..ccf5892 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ 3.7, 3.8 ] + python-version: [ 3.7, 3.10 ] steps: - uses: actions/checkout@v2 From 417f27cff6698afe02430c6c366f2e2779d7143c Mon Sep 17 00:00:00 2001 From: Alex Nelson Date: Tue, 10 May 2022 21:44:56 -0400 Subject: [PATCH 2/2] Change YAML syntax to quoted strings An unexpected behavior arose, and the 3.10 somehow parsed as 3.1. Signed-off-by: Alex Nelson --- .github/workflows/cicd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index ccf5892..97df165 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ 3.7, 3.10 ] + python-version: [ '3.7', '3.10' ] steps: - uses: actions/checkout@v2