Skip to content

ci: use github actions instead of azure for CI jobs #1

ci: use github actions instead of azure for CI jobs

ci: use github actions instead of azure for CI jobs #1

Workflow file for this run

name: check
on:
push:
# branches:
# - main
pull_request:
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["pypy3.9", "pypy3.10", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"