-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add more msp_config data for ORP settings (#68)
* feat: add more msp_config data for ORP settings * fix: update poetry action * fix: fix poetry install for pre-commit
- Loading branch information
Showing
2 changed files
with
28 additions
and
4 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 |
---|---|---|
|
@@ -24,12 +24,25 @@ jobs: | |
- uses: wagoid/[email protected] | ||
lint: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: | ||
- "3.13" | ||
poetry-version: | ||
- "2.0.0" | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.13" | ||
- uses: abatilo/[email protected] | ||
python-version: ${{ matrix.python-version }} | ||
- name: Set up Poetry | ||
uses: abatilo/[email protected] | ||
with: | ||
poetry-version: ${{ matrix.poetry-version }} | ||
- name: Install Dependencies | ||
run: poetry install | ||
shell: bash | ||
- uses: pre-commit/[email protected] | ||
|
||
test: | ||
|
@@ -38,6 +51,8 @@ jobs: | |
matrix: | ||
python-version: | ||
- "3.13" | ||
poetry-version: | ||
- "2.0.0" | ||
os: | ||
- ubuntu-latest | ||
- windows-latest | ||
|
@@ -49,7 +64,10 @@ jobs: | |
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- uses: abatilo/[email protected] | ||
- name: Set up Poetry | ||
uses: abatilo/[email protected] | ||
with: | ||
poetry-version: ${{ matrix.poetry-version }} | ||
- name: Install Dependencies | ||
run: poetry install | ||
shell: bash | ||
|
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