Skip to content

Commit cd9e558

Browse files
committed
Update Coverage
1 parent c963924 commit cd9e558

File tree

1 file changed

+23
-4
lines changed

1 file changed

+23
-4
lines changed

Diff for: .github/workflows/test-coverage.yaml

+23-4
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,29 @@ jobs:
2727
pkgdown
2828
remotes
2929
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
3453

3554
- name: Query dependencies
3655
run: |

0 commit comments

Comments
 (0)