add workflow

This commit is contained in:
Deniz Şafak
2025-04-26 02:57:16 +03:00
parent f79ba2c51b
commit a118cce87e
+19
View File
@@ -0,0 +1,19 @@
name: Install and run
run-name: Install and run
on: [ push, pull_request ]
jobs:
install-and-run:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.10', '3.11', '3.12']
runs-on: ${{ matrix.os }}
steps:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install abogen
run: python -m pip install abogen
- name: Run abogen
run: python -m abogen --version