Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
acf26a0
Also test for different platforms
pavelzw Sep 9, 2023
319c4c3
.
pavelzw Sep 9, 2023
788160f
.
pavelzw Sep 9, 2023
e0e989b
tree
pavelzw Sep 9, 2023
4600c50
.
pavelzw Sep 9, 2023
611308a
.
pavelzw Sep 9, 2023
7fc82e8
.
pavelzw Sep 9, 2023
db557b2
.
pavelzw Sep 9, 2023
b09006d
.
pavelzw Sep 9, 2023
180c6cc
.
pavelzw Sep 9, 2023
f7b75a1
test auth
pavelzw Sep 9, 2023
045615e
.
pavelzw Sep 9, 2023
18d10b4
.
pavelzw Sep 9, 2023
204ce01
.
pavelzw Sep 9, 2023
be21ec6
test
pavelzw Sep 9, 2023
a20b458
.
pavelzw Sep 9, 2023
661014c
.
pavelzw Sep 9, 2023
cc598ee
.
pavelzw Sep 9, 2023
3eb4882
.
pavelzw Sep 9, 2023
91518f0
resolve
pavelzw Sep 9, 2023
972589d
,.
pavelzw Sep 9, 2023
8f325ab
.
pavelzw Sep 9, 2023
d8208f2
.
pavelzw Sep 9, 2023
ac10ce4
.
pavelzw Sep 9, 2023
4ebaa90
.
pavelzw Sep 9, 2023
7810ca5
.
pavelzw Sep 9, 2023
594a518
.
pavelzw Sep 9, 2023
070891b
test cache
pavelzw Sep 9, 2023
b2aa32b
.
pavelzw Sep 9, 2023
e725f50
.
pavelzw Sep 9, 2023
2a979e6
.
pavelzw Sep 9, 2023
f0a56f0
.
pavelzw Sep 9, 2023
8cb18b6
.
pavelzw Sep 9, 2023
7a1d740
.
pavelzw Sep 9, 2023
eaafc4f
.
pavelzw Sep 9, 2023
3635deb
.
pavelzw Sep 9, 2023
8c54e9c
.
pavelzw Sep 9, 2023
eab5967
.
pavelzw Sep 9, 2023
a14b6b6
.
pavelzw Sep 9, 2023
1e7547f
.
pavelzw Sep 9, 2023
56b4120
.
pavelzw Sep 9, 2023
5edb1c5
.
pavelzw Sep 9, 2023
1655612
.
pavelzw Sep 9, 2023
1794739
.
pavelzw Sep 9, 2023
e96cfbe
.
pavelzw Sep 9, 2023
d29078b
.
pavelzw Sep 9, 2023
a59c353
.
pavelzw Sep 9, 2023
992b71a
.
pavelzw Sep 9, 2023
789df0d
.
pavelzw Sep 9, 2023
bdfc812
.
pavelzw Sep 9, 2023
a83418c
recurse
pavelzw Sep 9, 2023
ff5c41c
.
pavelzw Sep 9, 2023
0599410
.
pavelzw Sep 9, 2023
db78792
.
pavelzw Sep 9, 2023
bb21556
.
pavelzw Sep 9, 2023
26fe3d1
.
pavelzw Sep 9, 2023
42b5c5a
.
pavelzw Sep 9, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
323 changes: 267 additions & 56 deletions .github/workflows/test.yml

Large diffs are not rendered by default.

13 changes: 6 additions & 7 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ inputs:
cache-key:
description: |
Cache key prefix to use for caching the pixi environment.
Defaults to `pixi-{conda-arch}`.
Defaults to `pixi-`. The full cache key is `<cache-key><conda-arch>-<sha-256-of-pixi-lock>`.
cache-write:
description: |
Whether to write to the cache or only read from it. Defaults to `true`.
pixi-bin-path:
description: |
Path to the pixi binary to use. Defaults to `~/.pixi/bin/pixi`.
Expand All @@ -45,12 +48,8 @@ inputs:
description: Conda token to use for authentication.
post-cleanup:
description: |
What kind of cleanup the action should do in the post step.
One of `none`, `environment` or `all`.
If `none`, no cleanup is done.
If `environment`, the pixi environment is removed.
If `all`, the pixi environment, the pixi CLI are removed and the rattler cache is cleared.
Defaults to `all`.
If the action should clean up after itself. Defaults to `true`.
If `true`, the pixi environment, the pixi binary and the rattler files in ~/.rattler and ~/.cache/rattler are removed.

runs:
using: node20
Expand Down
Loading