From f0f3fcdcef3d9ff5d0cc35d3539dcd94d90b8f2e Mon Sep 17 00:00:00 2001 From: Matteo Giantomassi Date: Sun, 27 Oct 2024 12:55:56 +0100 Subject: [PATCH] typos --- .github/workflows/test.yml | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d345456fb..c0a169d73 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,8 +3,10 @@ name: Run the Abipy test suite. on: push: branches: [develop, master] + paths-ignore: ["**/*.md", docs/**] pull_request: branches: [develop] + paths-ignore: ["**/*.md", docs/**] workflow_dispatch: workflow_call: # make this workflow reusable by release.yml @@ -14,21 +16,21 @@ permissions: jobs: test: # prevent this action from running on forks - #if: github.repository == 'abinit/abipy' + if: github.repository == 'abinit/abipy' defaults: run: shell: bash -l {0} # enables conda/mamba env activation by reading bash profile + strategy: + fail-fast: false + matrix: + config: + - os: ubuntu-latest + python: "3.11" + config: + - os: ubuntu-latest + python: "3.12" - #strategy: - # fail-fast: false - # matrix: - # config: - # - os: ubuntu-latest - # python: '3.11' - # config: - # - os: ubuntu-latest - # python: '3.12' - #runs-on: ${{ matrix.config.os }} + runs-on: ${{ matrix.config.os }} env: PMG_MAPI_KEY: ${{ secrets.PMG_MAPI_KEY }}