Merge pull request #89 from shreypandey/storage_refactor #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test lib | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Install Poetry | |
uses: snok/[email protected] | |
with: | |
version: latest | |
- name: Install dependencies | |
working-directory: ./lib | |
run: poetry install --with test | |
- name: Test with pytest | |
working-directory: ./lib | |
run: poetry run pytest tests/file_storage/ |