This is an automated email from the ASF dual-hosted git repository. tomaz pushed a commit to branch github_actions_take_2 in repository https://gitbox.apache.org/repos/asf/libcloud.git
commit 70f56a690acf59218e4d430b4df078692898e6c5 Author: Tomaz Muraus <[email protected]> AuthorDate: Sun Dec 13 14:15:40 2020 +0100 print env info. --- .github/workflows/publish_pricing_to_s3.yml | 36 ++++++++++++++++++----------- 1 file changed, 22 insertions(+), 14 deletions(-) diff --git a/.github/workflows/publish_pricing_to_s3.yml b/.github/workflows/publish_pricing_to_s3.yml index 1c095fc..3c801d2 100644 --- a/.github/workflows/publish_pricing_to_s3.yml +++ b/.github/workflows/publish_pricing_to_s3.yml @@ -14,7 +14,7 @@ on: jobs: generate_and_publish_pricing_data: - name: Generate Code Coverage + name: Generate and Publish Pricing file to S3 runs-on: ubuntu-latest strategy: @@ -22,16 +22,24 @@ jobs: python_version: [3.7] steps: - - uses: actions/checkout@master - with: - fetch-depth: 1 - - name: Use Python ${{ matrix.python_version }} - uses: actions/setup-python@v2 - with: - python-version: ${{ matrix.python_version }} - - name: Install Python Dependencies - run: | - pip install "tox==3.20.1" - - name: Generate and publish pricing data - run: | - tox -escrape-and-publish-provider-prices + - name: Print Environment Info + id: printenv + run: | + printenv | sort + with: + fetch-depth: 1 + + - uses: actions/checkout@master + + - name: Use Python ${{ matrix.python_version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python_version }} + + - name: Install Python Dependencies + run: | + pip install "tox==3.20.1" + + - name: Generate and publish pricing data + run: | + tox -escrape-and-publish-provider-prices
