Skip to content

Commit

Permalink
Merge branch 'master' into py3-for-signature-generator
Browse files Browse the repository at this point in the history
  • Loading branch information
tkilias authored Jun 2, 2023
2 parents 8af91ee + ba46d9d commit 1f7a936
Show file tree
Hide file tree
Showing 333 changed files with 2,213 additions and 936 deletions.
20 changes: 20 additions & 0 deletions .github/actions/prepare_poetry_env/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: 'Prepare Poetry environment'
description: 'This composite action installs Python, Poetry, and installs the project into the Poetry environment'
inputs:
python-version:
description: 'The Python version to use'
required: true
default: '3.8'
runs:
using: "composite"
steps:
- uses: actions/setup-python@v2
with:
python-version: ${{ inputs.python-version }}
- uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.4.0
- name: Poetry install
run: poetry install
shell: bash

10 changes: 1 addition & 9 deletions .github/workflows/check_aws_buildspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,7 @@ jobs:
- name: Init submodules
run: git submodule update --init --recursive

- name: Setup Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Install Poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.2.0
- uses: ./.github/actions/prepare_poetry_env

- name: Setup poetry env
run: bash scripts/setup_poetry_env.sh "python3.8"
Expand Down
10 changes: 1 addition & 9 deletions .github/workflows/check_package_diffs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,7 @@ jobs:
with:
fetch-depth: 0

- name: Setup Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Install Poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.2.0
- uses: ./.github/actions/prepare_poetry_env

- name: Setup Poetry
run: |
Expand Down
10 changes: 1 addition & 9 deletions .github/workflows/check_starter_scripts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,7 @@ jobs:
- name: Init submodules
run: git submodule update --init --recursive

- name: Setup Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Install Poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.2.0
- uses: ./.github/actions/prepare_poetry_env

- name: Setup poetry env
run: bash scripts/setup_poetry_env.sh "python3.8"
Expand Down
2 changes: 1 addition & 1 deletion exaslct_scripts/exaslct.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 1f7a936

Please sign in to comment.