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 d648bdb
Show file tree
Hide file tree
Showing 2 changed files with 38 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.9]

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: sudo 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
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ pillow==10.2.0
# via matplotlib
psutil==5.9.8
# via -r requirements.in
pytest==8.3.1
py-tlsh==4.7.2
# via -r requirements.in
pycparser==2.21
Expand Down

0 comments on commit d648bdb

Please sign in to comment.