From 524e7c713b659e101ae5c4c49c73f543b6f40b31 Mon Sep 17 00:00:00 2001 From: Jimmy Charnley Kromann Date: Sun, 4 Feb 2024 12:26:06 +0100 Subject: [PATCH] Iteration on workflow --- .github/workflows/test.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1cb3904..c6c2904 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,13 +17,13 @@ jobs: shell: bash -l {0} strategy: matrix: - python-version: ['3.10', '3.11', '3.12'] + python-version: ['3.10', '3.11'] steps: - uses: actions/checkout@v2 - uses: conda-incubator/setup-miniconda@v2 with: activate-environment: dev - environment-file: environment_dev.yml + environment-file: ./environment_dev.yaml python-version: ${{ matrix.python-version }} - run: | pip install . @@ -32,7 +32,6 @@ jobs: pwd which python conda info - - run: | - make test - - run: | - make format + - run: make compile + - run: make test + - run: make format