Merge pull request #78 from atlanticwave-sdx/feat/allow_filter_intf_s… #26
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
# Run some code checks with GitHub Actions. | |
name: Code checks | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out sources | |
uses: actions/checkout@v4 | |
- name: Install Tox | |
run: | | |
pip install tox coverage | |
- name: Lint | |
run: | | |
# run only linter | |
tox -e lint | |
- name: Lint kytos-sdx Dockerfile | |
uses: hadolint/[email protected] | |
with: | |
dockerfile: Dockerfile | |