Skip to content

Commit

Permalink
introduce github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
zlatsic committed Sep 28, 2024
1 parent 79858b0 commit 3a5d970
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test-plat.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Ruly tests
on: [push]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

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

0 comments on commit 3a5d970

Please sign in to comment.