Skip to content

Commit

Permalink
CI workflow bringup (testing)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhuici committed Jul 24, 2024
1 parent 215b9b6 commit 4f68003
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: CI

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: [3.7, 3.8, 3.9, 3.10]

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9

- name: Install system dependencies
run: apt install -y libfuzzy-dev

- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run tests
run: pytest

0 comments on commit 4f68003

Please sign in to comment.