Removed the first recording button from SongEditor as it has no use #5944
This file contains hidden or 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: checks | |
'on': [push, pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
scripted-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install python-tinycss2 | |
run: sudo apt-get install -y python3-tinycss2 | |
- name: Update submodules | |
run: git submodule update --init --recursive | |
- name: Verify scripted tests | |
run: tests/scripted/verify | |
- name: Run check-strings | |
run: tests/scripted/check-strings | |
- name: Run check-namespace | |
run: tests/scripted/check-namespace | |
shellcheck: | |
runs-on: ubuntu-latest | |
container: koalaman/shellcheck-alpine:v0.9.0 | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
- name: Run shellcheck | |
run: | | |
shellcheck \ | |
$(find "./cmake/" -type f -name '*.sh' -o -name "*.sh.in") \ | |
doc/bash-completion/lmms \ | |
buildtools/update_locales | |
yamllint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
- name: Run yamllint | |
run: for i in $(git ls-files '*.yml'); do yamllint $i; done |