We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1d7943c + b000dc3 commit da08c50Copy full SHA for da08c50
1 file changed
.github/workflows/test-package-pypi.yaml
@@ -31,16 +31,16 @@ jobs:
31
post-cleanup: false
32
33
- name: Download the pixi configuration file from the master branch
34
- shell: bash
35
run: |
36
curl -LO https://raw.githubusercontent.com/easyscience/diffraction-lib/master/pixi/prod/pixi.toml
37
38
- name: Download the tests from the master branch
39
shell: bash
40
41
curl -LO https://github.com/easyscience/diffraction-lib/archive/refs/heads/master.zip
42
- unzip master.zip "diffraction-lib-master/tests/*" -d .
43
- mv diffraction-lib-master/tests ./tests
+ unzip master.zip -d .
+ mkdir -p tests
+ cp -r diffraction-lib-master/tests/* tests/
44
rm -rf master.zip diffraction-lib-master
45
46
- name: Create the environment and install dependencies
0 commit comments