mirror of
https://github.com/denizsafak/abogen.git
synced 2026-07-18 05:40:26 +02:00
add workflow
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user