File tree 1 file changed +23
-4
lines changed
1 file changed +23
-4
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,29 @@ jobs:
27
27
pkgdown
28
28
remotes
29
29
30
- - name : Install local registry
31
- run : /bin/bash -c "$(curl -fsSL https://data.scrc.uk/static/localregistry.sh)"
32
- - name : Start registry
33
- run : $HOME/.fair/registry/scripts/start_fair_registry
30
+ - name : Checkout FAIRDataPipeline/FAIR-CLI
31
+ uses : actions/checkout@v4
32
+ with :
33
+ repository : FAIRDataPipeline/FAIR-CLI
34
+ path : FAIR-CLI
35
+ - name : Move FAIR-CLI
36
+ run : mv FAIR-CLI ../FAIR-CLI
37
+ - name : Install Poetry
38
+ uses : snok/install-poetry@v1
39
+ with :
40
+ virtualenvs-create : true
41
+ virtualenvs-in-project : true
42
+
43
+ - name : Install and initialise FAIR CLI
44
+ run : |
45
+ cd ../FAIR-CLI
46
+ poetry install
47
+ source $VENV
48
+ cd '${{ github.workspace }}'
49
+ fair registry install --version main
50
+ fair init --ci
51
+ fair registry start
52
+ shell : bash
34
53
35
54
- name : Query dependencies
36
55
run : |
You can’t perform that action at this time.
0 commit comments