ipv6 cluster creation issue in testsys #16
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: Licenses | |
on: | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- '.github/dependabot.yml' | |
- 'bottlerocket/tests/workload/**' | |
- '**.md' | |
push: | |
paths-ignore: | |
- 'docs/**' | |
- '.github/dependabot.yml' | |
- 'bottlerocket/tests/workload/**' | |
- '**.md' | |
branches: [develop] | |
jobs: | |
cargo-deny: | |
# A small machine is OK for this independent job. | |
runs-on: ubuntu-latest | |
# If we already checked the PR, we don't need to check the actual push | |
if: ${{ github.event_name == 'pull_request' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- run: make cargo-deny |