Skip to content

Commit ef57b69

Browse files
committed
fix from review
1 parent aefa5c8 commit ef57b69

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/main.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
run: poetry install --no-interaction --all-extras
2828
- name: run pre-commit
2929
run: poetry run pre-commit run --all-files --show-diff-on-failure
30+
3031
packaging:
3132
runs-on: ubuntu-latest
3233
steps:
@@ -37,6 +38,7 @@ jobs:
3738
run: poetry install --no-interaction --all-extras
3839
- name: build package
3940
run: poetry build
41+
4042
documentation:
4143
runs-on: ubuntu-latest
4244
steps:
@@ -47,6 +49,7 @@ jobs:
4749
run: poetry install --no-interaction --all-extras
4850
- name: build documentation
4951
run: poetry run make html --directory docs
52+
5053
unit-tests:
5154
runs-on: ubuntu-latest
5255
strategy:
@@ -69,6 +72,7 @@ jobs:
6972
run: poetry run tox -e py
7073
- name: run python test report
7174
run: poetry run tox -e report
75+
7276
docker-build:
7377
runs-on: ubuntu-latest
7478
steps:
@@ -78,6 +82,7 @@ jobs:
7882
uses: docker/build-push-action@v5
7983
with:
8084
context: .
85+
8186
integration-tests:
8287
needs:
8388
- linting
@@ -112,7 +117,10 @@ jobs:
112117
role-session-name: GHA-${{ github.repository_owner }}-${{ github.event.repository.name }}-${{ github.run_id }}
113118
role-duration-seconds: ${{ env.AWS_ROLE_DURATION }}
114119
- name: run tests
115-
run: AWS_DEFAULT_REGION=eu-west-1 poetry run behave integration-tests/features --junit --junit-directory build/behave
120+
run: poetry run behave integration-tests/features --junit --junit-directory build/behave
121+
env:
122+
AWS_DEFAULT_REGION: eu-west-1
123+
116124
docker-build-push:
117125
needs:
118126
- integration-tests
@@ -136,6 +144,7 @@ jobs:
136144
push: true
137145
tags: sceptreorg/sceptre:edge
138146
labels: ${{ steps.meta.outputs.labels }}
147+
139148
docker-build-release:
140149
if: ${{ github.ref_type == 'tag' }}
141150
runs-on: ubuntu-latest
@@ -164,6 +173,7 @@ jobs:
164173
push: true
165174
tags: sceptreorg/sceptre:${{ steps.meta.outputs.tags }}
166175
labels: ${{ steps.meta.outputs.labels }}
176+
167177
pypi-release:
168178
if: ${{ github.ref_type == 'tag' }}
169179
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)