Add CI resources based on Robot-Framework #9
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: Sanatizers | |
on: | |
pull_request: | |
types: [synchronize, opened, reopened] | |
jobs: | |
sanatizers: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install requirements | |
run: sudo apt-get install pycodestyle python3-flake8 python3-pycodestyle shellcheck | |
- name: Run sanatizers | |
run: ./.github/scripts/run-all-sanatizers | |