Remove unsupported MTA version #329
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: Various file checks | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '**/*.sh' | |
- .github/workflows/checks.yaml | |
jobs: | |
shellcheck: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Shellcheck | |
run: sudo apt install shellcheck | |
- name: Check configure scripts | |
run: | | |
shellcheck **/*.sh |