File tree 3 files changed +17
-4
lines changed
3 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 10
10
matrix :
11
11
python-version : [3.6, 3.7, 3.8]
12
12
steps :
13
- - uses : actions/checkout@master
13
+ - uses : actions/checkout@v2
14
+ - run : git fetch --depth=1 origin +refs/tags/*:refs/tags/*
14
15
- name : Set up Python ${{ matrix.python-version }}
15
16
uses : actions/setup-python@v1
16
17
with :
30
31
matrix :
31
32
python-version : [3.6, 3.7, 3.8]
32
33
steps :
33
- - uses : actions/checkout@master
34
+ - uses : actions/checkout@v2
35
+ with :
36
+ fetch-depth : 0
37
+ - run : git fetch --depth=1 origin +refs/tags/*:refs/tags/*
34
38
- name : Set up Python ${{ matrix.python-version }}
35
39
uses : actions/setup-python@v1
36
40
with :
39
43
run : |
40
44
python -m pip install --upgrade pip
41
45
python -m pip install .[nodocs]
46
+ python setup.py --version
42
47
git config --global --add user.name "Renku @ SDSC"
43
48
git config --global --add user.email "renku@datascience.ch"
44
49
- name : Test with pytest
51
56
matrix :
52
57
python-version : [3.6, 3.7, 3.8]
53
58
steps :
54
- - uses : actions/checkout@master
59
+ - uses : actions/checkout@v2
60
+ with :
61
+ fetch-depth : 0
62
+ - run : git fetch --depth=1 origin +refs/tags/*:refs/tags/*
55
63
- name : Set up Python ${{ matrix.python-version }}
56
64
uses : actions/setup-python@v1
57
65
with :
Original file line number Diff line number Diff line change @@ -160,6 +160,7 @@ def __attrs_post_init__(self):
160
160
context = {
161
161
'prov' : 'http://www.w3.org/ns/prov#' ,
162
162
'wfprov' : 'http://purl.org/wf4ever/wfprov#' ,
163
+ 'rdfs' : 'http://www.w3.org/2000/01/rdf-schema#' ,
163
164
},
164
165
frozen = True ,
165
166
slots = True ,
Original file line number Diff line number Diff line change 732
732
"path" : " rdfs:label" ,
733
733
"datatype" : {
734
734
"@id" : " xsd:string"
735
- }
735
+ },
736
+ "minCount" : 1 ,
737
+ "maxCount" : 1 ,
738
+ "sh:pattern" : " renku \\ d+\\ .\\ d+\\ .\\ d+(?:\\ .dev\\ d+)?" ,
739
+ "sh:flags" : " i"
736
740
},
737
741
{
738
742
"path" : " prov:wasStartedBy" ,
You can’t perform that action at this time.
0 commit comments