Skip to content

Commit

Permalink
Merge pull request #179 from SupraSummus/ci
Browse files Browse the repository at this point in the history
Configure github actions
  • Loading branch information
twoolie committed Nov 1, 2023
2 parents 3ba35c5 + c9acd63 commit 69d707b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run tests

on: [push]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: [
"3.7", "3.8",
"pypy3.9",
]

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install pillow
- name: Run tests
run: python tests/alltests.py

0 comments on commit 69d707b

Please sign in to comment.