Skip to content

Commit

Permalink
feat: run unit tests automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
TimPietrusky committed Dec 10, 2023
1 parent 1614748 commit 2610411
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,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
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,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 2610411

Please sign in to comment.