diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 21ff540..1e154a7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,22 +24,25 @@ jobs: pylint python3-pyparsing python3-hypothesis + python3-setuptools task: > PYTHONPATH=./src:/github/home/.local/lib/python3.12/site-packages make -f Makefile lint - dependencies: > python3-pyparsing python3-hypothesis + python3-setuptools task: PYTHONPATH=./src make -f Makefile test - dependencies: > python3-coverage python3-pyparsing python3-hypothesis + python3-setuptools task: PYTHONPATH=./src make -f Makefile coverage - dependencies: python python3-build twine task: make -f Makefile package runs-on: ubuntu-latest - container: fedora:40 # CURRENT DEVELOPMENT ENVIRONMENT + container: fedora:41 # CURRENT DEVELOPMENT ENVIRONMENT steps: - uses: actions/checkout@v4 - name: Install dependencies diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml deleted file mode 100644 index ced6ced..0000000 --- a/.github/workflows/weekly.yml +++ /dev/null @@ -1,36 +0,0 @@ ---- -name: dbus-signature-pyparsing weekly - -# yamllint disable-line rule:truthy -on: - schedule: - - cron: 20 1 * * 6 - workflow_dispatch: - -jobs: - next-fedora-python-checks: - strategy: - matrix: - include: - - dependencies: black python3-isort - task: make -f Makefile fmt-travis - - dependencies: yamllint - task: make -f Makefile yamllint - - dependencies: pylint python3-pyparsing python-hypothesis - task: > - PYTHONPATH=./src:/github/home/.local/lib/python3.12/site-packages - make -f Makefile lint - runs-on: ubuntu-latest - container: fedora:41 # NEXT DEVELOPMENT ENVIRONMENT - steps: - - uses: actions/checkout@v4 - - name: Install dependencies - run: > - dnf install -y - make - pip - ${{ matrix.dependencies }} - - name: Install hs-dbus-signature - run: pip install --user hs-dbus-signature - - name: ${{ matrix.task }} - run: ${{ matrix.task }}