Automated dependency updates for SyncStar #123
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: syncstar | |
on: [push, pull_request] | |
jobs: | |
ci-base: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
container: fedorapython/fedora-python-tox:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install the base dependencies | |
run: | | |
python3 -m pip install --upgrade poetry tox | |
# TEMPORARILY DISABLED UNTIL POETRY STOPS RETURNING WARNINGS WITH NON ZERO EXIT CODES | |
# - name: Check the correctness of the project config | |
# run: | | |
# poetry check | |
- name: Check the quality of the code | |
run: | | |
tox -e cleaning |