From 5ee857774532ed178e8cfd2aa4a3cf1a8913c061 Mon Sep 17 00:00:00 2001 From: p-netm Date: Mon, 15 Mar 2021 16:35:09 +0300 Subject: [PATCH] Shaking up docker setup in github actions --- .github/workflows/main.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8cc0c4f..52cd37a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,7 +13,6 @@ jobs: python-version: [3.6] steps: - - uses: docker-practice/actions-setup-docker@master - uses: actions/checkout@v1 with: path: "${{ github.repository }}" @@ -23,9 +22,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | - docker --version - sudo apt-get update - sudo apt-get -qq -y install python-docker + sudo apt install docker python -m pip install --upgrade pip pip install -r requirements.txt - name: Test with molecule