Skip to content

Commit

Permalink
Add git identity
Browse files Browse the repository at this point in the history
  • Loading branch information
camposandro committed Jul 28, 2023
1 parent 8f35006 commit d1e87f8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/asv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,18 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install asv
- name: Install asv and virtualenv
run: |
sudo apt-get update
python -m pip install --upgrade pip
pip install asv
pip install virtualenv
- name: Checkout project repository
uses: actions/checkout@v3
- name: Config git identity
run: |
git config user.email "[email protected]"
git config user.name "Sandro Campos"
- name: Create ASV machine config file
run: asv machine --config $ASV_CONFIG --yes -v
- name: Run benchmarks with asv
Expand All @@ -41,5 +45,6 @@ jobs:
if: ${{ github.event_name == 'push' }}
run: |
asv run --config $ASV_CONFIG -v
asv publish --config $ASV_CONFIG -v
asv gh-pages --config $ASV_CONFIG -v

0 comments on commit d1e87f8

Please sign in to comment.