PES-2537: carrier may be unavailable #2178
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: Code checking by sniffer | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
jobs: | |
sniff: | |
name: Run sniffer | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@master | |
- name: Running sniffer | |
shell: bash | |
run: | | |
# make file runnable, might not be necessary | |
chmod +x "${GITHUB_WORKSPACE}/.github/run-sniffer.sh" | |
# run script | |
"${GITHUB_WORKSPACE}/.github/run-sniffer.sh" |