File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2,34 +2,34 @@ name: CI
2
2
on :
3
3
push :
4
4
branches :
5
- - ' ** '
5
+ - " ** "
6
6
pull_request :
7
7
branches :
8
- - ' ** '
8
+ - " ** "
9
9
jobs :
10
10
build :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- uses : actions/setup-python@v2
14
14
with :
15
- python-version : ' 3.8'
16
- architecture : ' x64'
15
+ python-version : " 3.8"
16
+ architecture : " x64"
17
17
- uses : actions/checkout@v2
18
18
- name : Install dependencies
19
19
run : |
20
20
make init
21
21
make dev
22
22
- name : Start immudb container
23
23
run : |
24
- docker run -d --health-cmd "immuadmin status" --health-interval 10s --health-timeout 5s --health-retries 5 -v ${{ github.workspace }}/tests/certs/my.key.pem:/key.pem -p 3322:3322 codenotary/immudb:1.9.3 --signingKey=/key.pem
24
+ docker run -d --health-cmd "immuadmin status" --health-interval 10s --health-timeout 5s --health-retries 5 -v ${{ github.workspace }}/tests/certs/my.key.pem:/key.pem -p 3322:3322 codenotary/immudb:dev --signingKey=/key.pem
25
25
docker run -d --health-cmd "immuadmin status" --health-interval 10s --health-timeout 5s --health-retries 5 -v ${{ github.workspace }}/tests/certs/my.key.pem:/key.pem -p 3333:3322 codenotary/immudb:1.5.0 --signingKey=/key.pem
26
26
docker run -d --health-cmd "immuadmin status" --health-interval 10s --health-timeout 5s --health-retries 5 -v ${{ github.workspace }}/tests/certs/my.key.pem:/key.pem -p 3344:3322 codenotary/immudb:1.4.1 --signingKey=/key.pem
27
27
docker run -d --health-cmd "immuadmin status" --health-interval 10s --health-timeout 5s --health-retries 5 -v ${{ github.workspace }}/tests/certs/my.key.pem:/key.pem -p 3355:3322 codenotary/immudb:1.4.0 --signingKey=/key.pem
28
28
- name : Run tests
29
29
run : |
30
30
make test
31
31
- name : Run linter (pep8)
32
- run : |
32
+ run : |
33
33
pip install autopep8
34
34
export PATH="$HOME/.local/bin":$PATH
35
35
autopep8 --exit-code --diff --recursive ./immudb --exclude="grpc"
You can’t perform that action at this time.
0 commit comments