From f0200bde43fff9294c3681fa4d87bd3946a1a3f4 Mon Sep 17 00:00:00 2001 From: Eric Power Date: Mon, 12 Feb 2024 20:42:01 -0800 Subject: [PATCH] CI workflow now uses python 3.12. --- .github/workflows/Continuous Integration.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Continuous Integration.yml b/.github/workflows/Continuous Integration.yml index 41ff6a3..565636c 100644 --- a/.github/workflows/Continuous Integration.yml +++ b/.github/workflows/Continuous Integration.yml @@ -12,7 +12,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + + - name: Set Up Python 3.12 + uses: actions/setup-python@v4 + with: + python-version: "3.12" - name: Install dependencies run: make venv @@ -20,5 +25,5 @@ jobs: - name: Run Static Analysis & Tests run: make - - name: Run Coverage + - name: Ensure 100% Test Coverage run: make coverage \ No newline at end of file