Skip to content

CI: Quicker runs

CI: Quicker runs #6

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v3
- name: Build and test
run: |
pip install -e .
pip install virtualenv
pip install -U git+https://github.com/airspeed-velocity/asv.git@main
asv machine --yes
asv run --quick --dry-run -vvv