Skip to content

Commit

Permalink
Merge branch 'master' into 29-resolve-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
c71n93 committed Oct 11, 2023
2 parents 58a3e5c + b8127c7 commit 7b9813b
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 5 deletions.
9 changes: 9 additions & 0 deletions .0pdd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
errors:
- [email protected]
alerts:
github:
- c71n93

tags:
- pdd
- bug
18 changes: 18 additions & 0 deletions .github/workflows/pdd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
name: pdd
on:
push:
branches:
- master
pull_request:
branches:
- master
concurrency:
group: pdd-${{ github.ref }}
cancel-in-progress: true
jobs:
pdd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- uses: g4s8/pdd-action@master
6 changes: 6 additions & 0 deletions .pdd
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
--source=.
--verbose
--exclude target/**
--rule min-words:20
--rule min-estimate:15
--rule max-estimate:90
4 changes: 1 addition & 3 deletions .rultor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
architect:
- OlesiaSub
docker:
image: yegor256/rultor-image:1.9.1
image: yegor256/rultor-image:1.21.0
assets:
settings.xml: yegor256/objectionary-secrets#settings.xml
pubring.gpg: yegor256/objectionary-secrets#pubring.gpg
Expand Down
4 changes: 2 additions & 2 deletions src/main/kotlin/org/objectionary/deog/repr/Nodes.kt
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ open class DGraphNode(
* @property fstOption list of nodes representing the option on the true branch
* @property sndOption list of nodes representing the option on the false branch
*
* @todo #64:30min gather cond, fstOption and sndOption into the existing
* IgNodeCondition structure and refactor its usages
* @todo #64:30min Some refactoring required for this class: gather cond, fstOption and sndOption arguments into
* the existing IgNodeCondition structure and refactor its usages.
*/
@Suppress("CLASS_NAME_INCORRECT")
class DGraphCondNode(
Expand Down

0 comments on commit 7b9813b

Please sign in to comment.