Add stop_sync_forever
method, to gracefully exit sync_forever
loop.
#1
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: Build Status | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
pre-commit-check: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: [ "3.12" ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
cache: "pip" | |
- name: Install pre-commit | |
run: | | |
pip install pre-commit | |
- name: pre-commit run --all-files | |
run: | | |
pre-commit run --all-files | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
cache: "pip" | |
- name: Install Tox | |
run: pip install tox | |
- name: Run Tox | |
# Run tox using the version of Python in `PATH` | |
run: tox -e py | |
coverage: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: [ "3.12" ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
cache: "pip" | |
- name: Install Tox | |
run: pip install tox | |
- name: Run Tox | |
run: tox -e coverage | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |