From ab1b54cdba12b9db4ece22bba36ebff7f9f4bc65 Mon Sep 17 00:00:00 2001 From: Hadrien Mary Date: Thu, 30 Nov 2023 09:41:50 -0500 Subject: [PATCH] [skip ci] cleanup pixi testing workflow file --- .github/workflows/test-with-pixi.yml | 37 ---------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/test-with-pixi.yml diff --git a/.github/workflows/test-with-pixi.yml b/.github/workflows/test-with-pixi.yml deleted file mode 100644 index 695bf72d..00000000 --- a/.github/workflows/test-with-pixi.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: test-with-pixi - -on: - push: - branches: ["main"] - tags: ["*"] - pull_request: - branches: - - "*" - - "!gh-pages" - schedule: - - cron: "0 4 * * MON" - -jobs: - test: - strategy: - fail-fast: false - matrix: - python-version: ["3.11"] - os: ["ubuntu-latest"] - rdkit-version: ["2023.09"] - - runs-on: ${{ matrix.os }} - timeout-minutes: 30 - - defaults: - run: - shell: pixi run bash {0} - - name: | - os=${{ matrix.os }} - - python=${{ matrix.python-version }} - - rdkit=${{ matrix.rdkit-version }} - - steps: - - name: Checkout the code - uses: actions/checkout@v3