-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* V1.1.0 version bump * Add to do (#80) * Combine worfklows (#82) * Combine worfklows * Try caching the os and packages Trying to reduce time for workflows * Revert "Try caching the os and packages" This reverts commit 9a67adc. * Remove black formatting Keep ruff formatting though * Remove black from requirements * Collegamento ipc (#85) * Implement Request wrappers * Use collegamento * Format * Add requirement
- Loading branch information
Showing
18 changed files
with
181 additions
and
537 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
Fixes #__. | ||
|
||
Changes in PR: | ||
To do: | ||
- [ ] ... | ||
|
||
Cuurent changes in PR: | ||
- ... |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Formatting | ||
|
||
on: push | ||
|
||
jobs: | ||
formatting-isort: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.11.1 | ||
|
||
- name: Code Formatting (App) | ||
run: | | ||
pip install -r requirements-dev.txt | ||
isort --check . | ||
formatting-ruff: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.11.1 | ||
|
||
- name: Code Formatting (App) | ||
run: | | ||
pip install -r requirements-dev.txt | ||
ruff format --check . | ||
ruff-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.11.1 | ||
|
||
- name: Code Formatting (App) | ||
run: | | ||
pip install -r requirements-dev.txt | ||
ruff check . |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<h1 align="center">Salve v1.0.0</h1> | ||
<h1 align="center">Salve v1.1.0</h1> | ||
|
||
# Installation | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ pygments | |
pyeditorconfig | ||
beartype | ||
token_tools | ||
collegamento |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.