We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c23d273 commit 4c06f78Copy full SHA for 4c06f78
.github/workflows/test-with-pixi.yml
@@ -0,0 +1,37 @@
1
+name: test-with-pixi
2
+
3
+on:
4
+ push:
5
+ branches: ["main"]
6
+ tags: ["*"]
7
+ pull_request:
8
+ branches:
9
+ - "*"
10
+ - "!gh-pages"
11
+ schedule:
12
+ - cron: "0 4 * * MON"
13
14
+jobs:
15
+ test:
16
+ strategy:
17
+ fail-fast: false
18
+ matrix:
19
+ python-version: ["3.11"]
20
+ os: ["ubuntu-latest"]
21
+ rdkit-version: ["2023.09"]
22
23
+ runs-on: ${{ matrix.os }}
24
+ timeout-minutes: 30
25
26
+ defaults:
27
+ run:
28
+ shell: pixi run bash {0}
29
30
+ name: |
31
+ os=${{ matrix.os }}
32
+ - python=${{ matrix.python-version }}
33
+ - rdkit=${{ matrix.rdkit-version }}
34
35
+ steps:
36
+ - name: Checkout the code
37
+ uses: actions/checkout@v3
0 commit comments