Skip to content

Replaced travis com github actions #3

Replaced travis com github actions

Replaced travis com github actions #3

Workflow file for this run

name: unittests
on:
push:
pull_request:
types: [opened, reopened]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v3
- name: Set up Python
id: setup-python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get install -y librtmp-dev libevent-dev
python -m pip install --upgrade pip
make setup
- name: Test with pyvows
run: make test