Skip to content

Commit 4c06f78

Browse files
authored
[skip ci] dummy workflow
1 parent c23d273 commit 4c06f78

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

.github/workflows/test-with-pixi.yml

+37
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)