From 2d4fa26ebccf44a29d14440df5883d3b3dd0005d Mon Sep 17 00:00:00 2001 From: Emily Bourne Date: Tue, 17 Oct 2023 10:44:21 +0200 Subject: [PATCH] Add Python 3.12 tests --- .github/actions/create_readme/action.yml | 8 ++++++++ .github/workflows/daily_check.yml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/actions/create_readme/action.yml b/.github/actions/create_readme/action.yml index ef7c6f65..8c2d42c6 100644 --- a/.github/actions/create_readme/action.yml +++ b/.github/actions/create_readme/action.yml @@ -52,5 +52,13 @@ runs: echo "" >> README.md echo "![Python 3.11 compilation results](./${FILE}_compilation.svg)" >> README.md echo "![Python 3.11 execution results](./${FILE}_execution.svg)" >> README.md + + echo "## Python 3.12 results" >> README.md + FILE=version_specific_results/pypi_performance_312_${VERSION} + cat ${FILE}.md >> README.md + FILE=version_specific_results/pypi_performance_312 + echo "" >> README.md + echo "![Python 3.12 compilation results](./${FILE}_compilation.svg)" >> README.md + echo "![Python 3.12 execution results](./${FILE}_execution.svg)" >> README.md working-directory: ./. shell: bash diff --git a/.github/workflows/daily_check.yml b/.github/workflows/daily_check.yml index c003d87c..47666c9a 100644 --- a/.github/workflows/daily_check.yml +++ b/.github/workflows/daily_check.yml @@ -37,7 +37,7 @@ jobs: needs: Check_Pyccel_Version strategy: matrix: - python-minor-version: [8, 9, 10, 11] + python-minor-version: [8, 9, 10, 11, 12] steps: - uses: actions/checkout@v3