diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8850aaddc7..6dd3ea8cfc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,9 +10,9 @@ on: jobs: dist: - name: distribution packages - timeout-minutes: 10 + name: Build AWS Lambda Layer runs-on: ubuntu-latest + timeout-minutes: 10 steps: - uses: actions/checkout@v2 @@ -33,9 +33,9 @@ jobs: dist-serverless/* docs: - timeout-minutes: 10 - name: build documentation + name: Build SDK API Doc runs-on: ubuntu-latest + timeout-minutes: 10 steps: - uses: actions/checkout@v2 @@ -55,8 +55,9 @@ jobs: path: docs/_build/gh-pages.zip lint: - timeout-minutes: 10 + name: Lint Sources runs-on: ubuntu-latest + timeout-minutes: 10 steps: - uses: actions/checkout@v2 @@ -69,9 +70,10 @@ jobs: tox -e linters test: - continue-on-error: true - timeout-minutes: 45 + name: Run Tests runs-on: ${{ matrix.linux-version }} + timeout-minutes: 45 + continue-on-error: true strategy: matrix: linux-version: [ubuntu-latest] @@ -125,7 +127,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - - name: setup + - name: Setup Test Env env: PGHOST: localhost PGPASSWORD: sentry @@ -134,7 +136,7 @@ jobs: psql -c 'create database test_travis_ci_test;' -U postgres pip install codecov tox - - name: run tests + - name: Run Tests env: CI_PYTHON_VERSION: ${{ matrix.python-version }} timeout-minutes: 45