Fix handling of constraints when starting a new track to avoid data loss #12482
Workflow file for this run
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: 🧹 Static Tests | |
on: | |
push: | |
branches: | |
- master | |
- release-** | |
pull_request: | |
branches: | |
- master | |
- release-** | |
jobs: | |
# license_check: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v4 | |
# - name: Install Requirements | |
# run: | | |
# sudo apt install -y \ | |
# cpanminus | |
# cpanm --notest App::Licensecheck | |
# | |
# - name: Run License Check | |
# run: ./scripts/test_licenses.sh | |
banned_keywords_check: | |
name: banned keywords check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run Banned Keywords Test | |
run: ./scripts/test_banned_keywords.sh | |
cppcheck-1_9: | |
name: cpp check | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Requirements | |
run: | | |
sudo apt install -y cppcheck | |
- name: Run cppcheck test | |
run: ./scripts/cppcheck.sh |