-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #843 from mulkieran/develop-2.4.1-3.0.0
Version 3.0.0
- Loading branch information
Showing
48 changed files
with
1,569 additions
and
1,002 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
name: stratis-cli weekly | ||
|
||
# yamllint disable-line rule:truthy | ||
on: | ||
schedule: | ||
- cron: 25 3 * * 4 | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
next-fedora-python-checks: | ||
continue-on-error: true | ||
strategy: | ||
matrix: | ||
include: | ||
# PYTHON CHECKS ON NEXT FEDORA PYTHON AND PYTHON TOOLS VERSION | ||
- dependencies: > | ||
pylint | ||
python3-dateutil | ||
python3-dbus-client-gen | ||
python3-dbus-python-client-gen | ||
python3-justbytes | ||
python3-packaging | ||
python3-psutil | ||
python3-wcwidth | ||
task: PYTHONPATH=./src make -f Makefile lint | ||
- dependencies: black python3-isort | ||
task: make -f Makefile fmt-ci | ||
- dependencies: yamllint | ||
task: make -f Makefile yamllint | ||
runs-on: ubuntu-18.04 | ||
container: fedora:34 # NEXT DEVELOPMENT ENVIRONMENT | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install dependencies | ||
run: > | ||
dnf install -y | ||
make | ||
python-unversioned-command | ||
${{ matrix.dependencies }} | ||
- name: ${{ matrix.task }} | ||
run: ${{ matrix.task }} |
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
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
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
Oops, something went wrong.