See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
| #!/usr/bin/python3 | |
| """ | |
| Python script to retrieve IP range from a given IP with the CIDR. | |
| Execute it providing the IP: e.g. 10.0.2.7/32 | |
| """ | |
| import sys | |
| from ipaddress import IPv4Network, AddressValueError, NetmaskValueError | |
| def usage(): |
| name: Maven CI/CD | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build_and_test: |