From ed17f0aabc0f92d0b252a22d7a46f7ef0191c6c3 Mon Sep 17 00:00:00 2001 From: Jacan Chaplais Date: Wed, 11 Sep 2024 16:46:05 +0100 Subject: [PATCH 1/3] added windows-latest and macos-latest --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bc3f30b..672a446 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,8 +8,8 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-13] - pyver: ["3.8", "3.9", "3.10", "3.11"] + os: [ubuntu-latest, macos-13, macos-latest, windows-latest] + pyver: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 - uses: mamba-org/setup-micromamba@v1 From 9459caea236ae074b13a96094a31ec8673309e5d Mon Sep 17 00:00:00 2001 From: Jacan Chaplais Date: Wed, 11 Sep 2024 16:49:40 +0100 Subject: [PATCH 2/3] removed libtool and env caching #188 --- .github/workflows/tests.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 672a446..2fa6b03 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,9 +19,8 @@ jobs: create-args: >- python=${{ matrix.pyver }} pytest>=6.2.5 - libtool init-shell: bash - cache-environment: true + cache-environment: false post-cleanup: 'all' - name: Install graphicle From 1751eaee8e01257a04faa6d58919ce31449ac51f Mon Sep 17 00:00:00 2001 From: Jacan Chaplais Date: Wed, 11 Sep 2024 16:54:33 +0100 Subject: [PATCH 3/3] reinstate env caching #188 --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2fa6b03..3a7b1d9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,7 +20,7 @@ jobs: python=${{ matrix.pyver }} pytest>=6.2.5 init-shell: bash - cache-environment: false + cache-environment: true post-cleanup: 'all' - name: Install graphicle