Skip to content

Commit

Permalink
ci(check): style for env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Elijas committed Sep 25, 2023
1 parent e28e80a commit 86b0012
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 42 deletions.
39 changes: 0 additions & 39 deletions .github/actions/setup-python-poetry/action.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:

env:
PRIMARY_PYTHON_VERSION: '3.11'
POETRY_VERSION: '1.6.1'

jobs:
build:
Expand All @@ -23,14 +24,13 @@ jobs:
python-version: ['3.9', '3.10', '3.11']

steps:

- name: Checkout code
uses: actions/checkout@v3
- name: "Setup Python, Poetry and Dependencies"
uses: packetcoders/action-setup-cache-python-poetry@main
with:
python-version: "${{ matrix.python-version }}"
poetry-version: "1.6.1"
poetry-version: "${{ env.POETRY_VERSION }}"
- name: Install Task
run: |
sudo sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'

jobs:
release:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 86b0012

Please sign in to comment.