Skip to content

Commit

Permalink
Add GitHub Actions workflow for pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethreitz committed Mar 29, 2024
1 parent 9e0d8bc commit 2421cb5
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: pytest

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

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

steps:
- name: Checkout repository
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: pip install -r requirements.txt

- name: Test with pytest
run: pytest

0 comments on commit 2421cb5

Please # to comment.