Skip to content

Commit

Permalink
actions messups
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniouaa committed Apr 10, 2024
1 parent 0cf6103 commit c7c1d3e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push]

jobs:
test:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v2
Expand All @@ -14,8 +14,8 @@ jobs:
with:
python-version: 3.11

- name: Setup PDM
- uses: actions/checkout@v4
- name: Setup PDM
uses: pdm-project/setup-pdm@v4

- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
- name: Checkout the repo
uses: actions/checkout@v2

- name: Install python 3.7
- name: Install python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.11

- uses: actions/checkout@v4
- name: Setup PDM
Expand Down
3 changes: 2 additions & 1 deletion krypto/config.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import tomli


class PyProjectNotFound(Exception): ...
class PyProjectNotFound(Exception):
...


DEFAULTS = {"prefix": "TODO", "attach-issue": False}
Expand Down
3 changes: 2 additions & 1 deletion krypto/todo.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
# Will need to change the parser to deal with the new tokens


class TODOError(Exception): ...
class TODOError(Exception):
...


@dataclass
Expand Down

0 comments on commit c7c1d3e

Please sign in to comment.