Skip to content

Commit

Permalink
workflow: add tests to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SilverBzH committed Jan 23, 2024
1 parent e6128a6 commit 194a1da
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,19 @@ jobs:
run: |
pip install --upgrade pip
pip install black=="23.12.1"
- run: black --check scripts/ --exclude pica
- run: black --check tests/
tests:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install
run: |
pip install --upgrade pip
pip install ./py/pica/
pip install pytest=="7.4.4"
- run: pytest --log-cli-level=DEBUG -v

0 comments on commit 194a1da

Please sign in to comment.