Skip to content

Commit

Permalink
Update workflows and actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicoretti committed Jul 18, 2023
1 parent 4688e8c commit b025e80
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'SPPE'
description: 'Setup python and poetry environment'
name: 'SDE'
description: 'Setup development environment'

inputs:

Expand Down Expand Up @@ -31,3 +31,6 @@ runs:
- name: Poetry install
run: poetry install
shell: bash

- name: Setup task runner
uses: extractions/setup-just@v1
7 changes: 2 additions & 5 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,8 @@ jobs:
- name: SCM Checkout
uses: actions/checkout@v3

- name: Setup task runner
uses: extractions/setup-just@v1

- name: Setup Python & Poetry Environment
uses: ./.github/actions/python-environment
- name: Setup Environment
uses: ./.github/actions/env
with:
python-version: ${{ matrix.python-version }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
- name: SCM Checkout
uses: actions/checkout@v3

- name: Setup Python & Poetry Environment
uses: ./.github/actions/python-environment
- name: Setup Environment
uses: ./.github/actions/env

- name: Check Tag Version
# make sure the pushed/created tag matched the project version
Expand All @@ -41,8 +41,8 @@ jobs:
- name: SCM Checkout
uses: actions/checkout@v3

- name: Setup Python & Poetry Environment
uses: ./.github/actions/python-environment
- name: Setup Environment
uses: ./.github/actions/env

- name: Build Artifacts
run: just build
Expand Down

0 comments on commit b025e80

Please sign in to comment.