Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
Unidata
/
MetPy
Public
Notifications
You must be signed in to change notification settings
Fork
449
Star
1.4k
Code
Issues
321
Pull requests
58
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Files
Expand file tree
803fadd31d881e36c0f78da5ea6a6f509b2daa63
Breadcrumbs
MetPy
/
.github
/
workflows
/
benchmark-pr.yml
Copy path
View runs
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
40 lines (38 loc) · 1.63 KB
803fadd
Breadcrumbs
MetPy
/
.github
/
workflows
/
benchmark-pr.yml
Copy path
Top
File metadata and controls
Code
Blame
40 lines (38 loc) · 1.63 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Benchmark PR
on:
pull_request:
#we don't need pull requests on the gh-pages branch to be benchmarked
branches: [main]
types: [opened, synchronize, reopened, labeled] #defaults and when labeled
workflow_dispatch:
concurrency:
group: ${{ github.workflow}}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
benchmark:
runs-on: ubuntu-latest
permissions:
contents: read
#sets only to run when the GitHub PR is labeled with 'benchmark'
if: contains(github.event.pull_request.labels.*.name, 'benchmark')
timeout-minutes: 20 #times out after 20 minutes
defaults:
run:
working-directory: ./benchmarks #sets the default working directory to ./benchmarks
steps:
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.12"
- name: Checkout repo
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0 # Fetch full history
persist-credentials: false
- run: python -m pip install numpy pandas xarray metpy netcdf4
- name: Create data array
run: python data_array_generate.py
- run: pip install asv virtualenv #install asv
- run: python -m asv machine --yes #setup the asv machine settings with device-given defaults
- name: Run ASV
# runs asv on the PR's base sha (should always be main) and the PR branch's sha
run: python -m asv continuous ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }}
You can’t perform that action at this time.