Skip to content

Commit 18cd61b

Browse files
committed
update image
1 parent fb76484 commit 18cd61b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,34 @@ name: CI
22
on:
33
push:
44
branches:
5-
- '**'
5+
- "**"
66
pull_request:
77
branches:
8-
- '**'
8+
- "**"
99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/setup-python@v2
1414
with:
15-
python-version: '3.8'
16-
architecture: 'x64'
15+
python-version: "3.8"
16+
architecture: "x64"
1717
- uses: actions/checkout@v2
1818
- name: Install dependencies
1919
run: |
2020
make init
2121
make dev
2222
- name: Start immudb container
2323
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
2525
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
2626
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
2727
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
2828
- name: Run tests
2929
run: |
3030
make test
3131
- name: Run linter (pep8)
32-
run : |
32+
run: |
3333
pip install autopep8
3434
export PATH="$HOME/.local/bin":$PATH
3535
autopep8 --exit-code --diff --recursive ./immudb --exclude="grpc"

0 commit comments

Comments
 (0)