-
-
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.
- Loading branch information
1 parent
b09f4ef
commit 863d3a8
Showing
1 changed file
with
20 additions
and
20 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 |
---|---|---|
|
@@ -13,27 +13,27 @@ jobs: | |
- macos-latest | ||
- windows-latest | ||
python-version: | ||
- "3.8" | ||
- "3.9" | ||
- "3.10" | ||
- "3.11" | ||
- '3.8' | ||
- '3.9' | ||
- '3.10' | ||
- '3.11' | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Install poetry | ||
run: pipx install poetry | ||
- uses: actions/checkout@v3 | ||
- name: Install poetry | ||
run: pipx install poetry xonsh | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: poetry | ||
cache-dependency-path: pyproject.toml | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: poetry | ||
cache-dependency-path: pyproject.toml | ||
|
||
- uses: pre-commit/[email protected] | ||
- name: Install dependencies | ||
run: poetry install | ||
- name: Run tests | ||
run: | | ||
xonsh -c "xontrib load 1password" | ||
poetry run pytest | ||
- uses: pre-commit/[email protected] | ||
- name: Install dependencies | ||
run: poetry install | ||
- name: Run tests | ||
run: | | ||
xonsh -c "xontrib load 1password" | ||
poetry run pytest |