Skip to content

Commit

Permalink
ci(ci): Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
antonpirker committed Apr 1, 2022
1 parent 4703bc3 commit 0b7c5fd
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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]
Expand Down Expand Up @@ -125,7 +127,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: setup
- name: Setup Test Env
env:
PGHOST: localhost
PGPASSWORD: sentry
Expand All @@ -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
Expand Down

0 comments on commit 0b7c5fd

Please sign in to comment.