Update mypy ignore messages (#4228) #16
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
name: ASV Benchmark | |
on: | |
push: | |
branches: | |
- main # Run benchmarks on every commit to the main branch | |
workflow_dispatch: | |
jobs: | |
benchmark: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
path: "kedro" | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install asv # Install ASV | |
- name: Run ASV benchmarks | |
run: | | |
cd kedro | |
asv machine --machine=github-actions | |
asv run -v --machine=github-actions | |
- name: Set git email and name | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Kedro" | |
- name: Checkout target repository | |
uses: actions/checkout@v4 | |
with: | |
repository: kedro-org/kedro-benchmark-results | |
token: ${{ secrets.GH_TAGGING_TOKEN }} | |
ref: 'main' | |
path: "kedro-benchmark-results" | |
- name: Copy files to target repository | |
run: | | |
cp -r /home/runner/work/kedro/kedro/kedro/.asv /home/runner/work/kedro/kedro/kedro-benchmark-results/ | |
- name: Commit and Push changes to kedro-org/kedro-benchmark-results | |
run: | | |
cd kedro-benchmark-results | |
git add . | |
git commit -m "Add results" | |
git push |