Skip to content

Commit

Permalink
fix .github folder
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisschellekens committed Jan 22, 2024
1 parent 9250dd5 commit 93d0740
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
patreon: borbpdf
Empty file modified .github/ISSUE_TEMPLATE/bug_report.md
100755 → 100644
Empty file.
Empty file modified .github/ISSUE_TEMPLATE/feature_request.md
100755 → 100644
Empty file.
Empty file modified .github/workflows/python-publish.yml
100755 → 100644
Empty file.
26 changes: 26 additions & 0 deletions .github/workflows/python-smoke-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Smoke Test(s) Against Multiple Python Versions

on: [push]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
run: |
pytest tests/pdf/canvas/layout/test_new_layout_methods_without_visual_compare.py
4 changes: 2 additions & 2 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Test Against Multiple Python Versions
name: All Test(s) Against Multiple Python Versions

on: [push]
on: []

jobs:
build:
Expand Down

0 comments on commit 93d0740

Please sign in to comment.