Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
wavy-cat committed Mar 9, 2024
1 parent 4d6170a commit 5196b79
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: "3.11"
- uses: actions/cache@v3
- uses: actions/cache@v4
id: cache
with:
path: ${{ env.pythonLocation }}
Expand Down
14 changes: 5 additions & 9 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,22 @@ on:
jobs:
regular:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
permissions:
id-token: write
steps:

- name: Checkout code
uses: actions/checkout@v4
with:
fetch-tags: true

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Install poetry
run: pipx install poetry

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Update package version
run: |
release_version=${{ github.event.release.tag_name }}
Expand Down
1 change: 0 additions & 1 deletion wavy_totem_lib/aio.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
from .styles.abstract import AbstractStyle
from .styles.wavy import WavyStyle
from .sync import TotemBuilder
from string import ascii_lowercase


class AsyncTotemBuilder(TotemBuilder):
Expand Down

0 comments on commit 5196b79

Please sign in to comment.