Skip to content

Commit

Permalink
Merge pull request #27 from filipre/handle-exceptions-in-threads
Browse files Browse the repository at this point in the history
Implement restart logic
  • Loading branch information
filipre authored Jul 16, 2023
2 parents ed209c7 + 954fff1 commit 33d0f31
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 1,068 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,25 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.11
- uses: pre-commit/action@v2.0.3

unittest:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.11
- name: Install Poetry
uses: abatilo/actions-poetry@v2.0.0
with:
poetry-version: 1.1.13
poetry-version: 1.5.1
- name: Install dependencies
run: poetry install --no-dev
- name: Run unit tests
Expand Down
Loading

0 comments on commit 33d0f31

Please sign in to comment.