From 410fcc6a19bb86d843fe239a1c378968ca9420c3 Mon Sep 17 00:00:00 2001 From: Jacan Chaplais <31956735+jacanchaplais@users.noreply.github.com> Date: Wed, 11 Sep 2024 17:00:29 +0100 Subject: [PATCH] Added automated testing on ARM and Windows architectures #188 (#189) * added windows-latest and macos-latest * removed libtool and env caching #188 * reinstate env caching #188 --- .github/workflows/tests.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bc3f30b..3a7b1d9 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 @@ -19,7 +19,6 @@ jobs: create-args: >- python=${{ matrix.pyver }} pytest>=6.2.5 - libtool init-shell: bash cache-environment: true post-cleanup: 'all'