Skip to content
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.

Commit

Permalink
Add requirements.txt stub
Browse files Browse the repository at this point in the history
  • Loading branch information
josh committed May 8, 2024
1 parent 965ad22 commit 65a6615
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Test

on: push
on: [push, workflow_dispatch]

jobs:
pytest:
test:
runs-on: ubuntu-latest

steps:
Expand All @@ -22,6 +22,11 @@ jobs:
python-version: "3.12"
cache: "pip"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test
run: |
python3 test.py data/
Empty file added requirements.txt
Empty file.

0 comments on commit 65a6615

Please sign in to comment.