Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/asv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- uses: prefix-dev/[email protected]
with:
environments: dev
cache: true
cache: false

- name: Run benchmarks
shell: bash
Expand All @@ -42,7 +42,7 @@ jobs:
with:
name: asv-results-${{ matrix.os }}
path: asv_benchmarks/results

publish-report:
if: github.event_name == 'push' && github.event.repository.fork == false
name: Build HTML report
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
with:
ref: gh-pages
path: gh-pages

- name: Copy previous results
run: |
mkdir -p asv_benchmarks/results
Expand All @@ -92,7 +92,7 @@ jobs:
- uses: prefix-dev/[email protected]
with:
environments: dev
cache: true
cache: false

- name: Generate HTML report
run: pixi run asv-publish
Expand All @@ -106,8 +106,8 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: asv_benchmarks/html
keep_files: true
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'
user_name: "github-actions[bot]"
user_email: "github-actions[bot]@users.noreply.github.com"
commit_message: ${{ github.event.head_commit.message }}

- name: Upload artifact
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: prefix-dev/[email protected]
with:
environments: static
cache: true
cache: false

- name: Linter
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
environments: >-
dev
nogil
cache: true
cache: false

- name: Test with pytest
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: prefix-dev/[email protected]
with:
environments: dev
cache: true
cache: false
- name: Build SDist
run: |
pixi run build-sdist
Expand Down
Loading