format shell scripts with shfmt #235
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: "Validate Plugins" | |
on: | |
push: | |
branches: ["master", "github-action"] | |
pull_request: | |
schedule: | |
- cron: "33 1 * * 3" | |
jobs: | |
ubuntu: | |
name: Ubuntu | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.11"] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: cd and ls | |
run: | | |
cd ${{ github.workspace }} | |
ls -l | |
- name: Validate Plugins | |
run: python ./scripts/plugin-validate.py |