Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sfmig committed Oct 12, 2023
1 parent 2ee6749 commit 399cc7c
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/benchmark_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@
# See for reference:
# https://github.com/scikit-image/scikit-image/blob/main/.github/workflows/benchmarks.yml#L77

###############################
# Metadata for this workflow
###############################
name: benchmarks

###############################
# Triggers
###############################
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
Expand All @@ -19,10 +25,16 @@ on:
workflow_dispatch:


###############################
# Permissions
###############################
# permissions:
# contents: read


###############################
# Jobs
###############################
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "benchmark"
Expand All @@ -37,7 +49,7 @@ jobs:

# Create virtual environment?
- name: Create virtual environment
run: echo "$GITHUB_WORKSPACE ${{ github.repository }}""
run: echo "$GITHUB_WORKSPACE ${{ github.repository }}"

# Run `asv run` ?
- name: Run asv benchmarks from root
Expand Down

0 comments on commit 399cc7c

Please sign in to comment.