-
Notifications
You must be signed in to change notification settings - Fork 73
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
755f77f
commit a3c27f8
Showing
2 changed files
with
11 additions
and
19 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 |
---|---|---|
|
@@ -16,37 +16,30 @@ jobs: | |
- name: Check out the repository | ||
uses: actions/[email protected] | ||
|
||
# - name: Install Poetry | ||
# env: | ||
# PIP_CONSTRAINT: .github/workflows/constraints.txt | ||
# run: | | ||
# pipx install poetry | ||
# poetry --version | ||
- name: Install Poetry | ||
env: | ||
PIP_CONSTRAINT: .github/workflows/constraints.txt | ||
run: | | ||
pipx install poetry | ||
poetry --version | ||
- name: Setup Python 3.11 | ||
uses: actions/[email protected] | ||
with: | ||
python-version: 3.11 | ||
architecture: x64 | ||
# cache: 'poetry' | ||
|
||
- name: Install poetry | ||
run: | | ||
curl -fsS https://install.python-poetry.org | python - -y | ||
cache: 'poetry' | ||
|
||
- name: Configure poetry | ||
run: poetry config virtualenvs.create false | ||
|
||
- name: Install requirements | ||
- name: Install project | ||
run: > | ||
poetry install | ||
-vvv | ||
--only dev | ||
--only benchmark | ||
- name: Install project | ||
run: | | ||
poetry install -vvv --without dev --all-extras | ||
--with dev | ||
--with benchmark | ||
--all-extras | ||
- name: Run benchmarks | ||
uses: CodSpeedHQ/action@v1 | ||
|
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