Skip to content

build(deps): bump actions/checkout from 3 to 4 #7

build(deps): bump actions/checkout from 3 to 4

build(deps): bump actions/checkout from 3 to 4 #7

Workflow file for this run

name: Tests
on:
pull_request:
workflow_dispatch:
jobs:
benchmark:
name: "${{ matrix.os.emoji }} ${{ matrix.python.name }}"
runs-on: ${{ matrix.os.runs-on }}
strategy:
fail-fast: false
matrix:
os:
- emoji: 🐧
runs-on: [ubuntu-latest]
- emoji: 🍎
runs-on: [macos-latest]
- emoji: 🪟
runs-on: [windows-latest]
python:
- name: CPython 3.12
runs-on: "3.12-dev"
- name: CPython 3.11
runs-on: "3.11"
- name: CPython 3.10
runs-on: "3.10"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
cache: pip
check-latest: true
python-version: ${{ matrix.python.runs-on }}
- run: python -m pip install -U pip
- run: python -m pip install -e '.[test]'
- run: python -m pytest