From 18cd61ba3f9071ecb45438b2bb7dc86eadc0801b Mon Sep 17 00:00:00 2001 From: Stefano Scafiti Date: Mon, 16 Sep 2024 11:00:24 +0200 Subject: [PATCH] update image --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2b70e49..145f45e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,18 +2,18 @@ name: CI on: push: branches: - - '**' + - "**" pull_request: branches: - - '**' + - "**" jobs: build: runs-on: ubuntu-latest steps: - uses: actions/setup-python@v2 with: - python-version: '3.8' - architecture: 'x64' + python-version: "3.8" + architecture: "x64" - uses: actions/checkout@v2 - name: Install dependencies run: | @@ -21,7 +21,7 @@ jobs: make dev - name: Start immudb container run: | - 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 + 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 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 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 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 @@ -29,7 +29,7 @@ jobs: run: | make test - name: Run linter (pep8) - run : | + run: | pip install autopep8 export PATH="$HOME/.local/bin":$PATH autopep8 --exit-code --diff --recursive ./immudb --exclude="grpc"