Skip to content

Merge pull request #39 from pdftables/dependabot/github_actions/actio… #27

Merge pull request #39 from pdftables/dependabot/github_actions/actio…

Merge pull request #39 from pdftables/dependabot/github_actions/actio… #27

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.8', '3.9', '3.10', '3.11']
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
- name: Run tests
run: python setup.py test