Skip to content

Commit

Permalink
ci: run unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
TimPietrusky committed Nov 17, 2023
1 parent 73de8f5 commit dc92334
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/docker-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"

- name: Install dependencies
run: pip install -r requirements.txt

- name: Run tests
run: python -m unittest discover

- name: Clear space to remove unused folders
run: |
rm -rf /usr/share/dotnet
Expand Down

0 comments on commit dc92334

Please sign in to comment.