Bump black from 22.10.0 to 24.3.0 #57
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
check-python: | |
needs: [] | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Set up GitHub Actions" | |
uses: actions/checkout@v3 | |
- name: "Set up Python 3.8" | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: "Install Python dependencies" | |
run: | | |
pip install --no-cache-dir --upgrade pip setuptools wheel | |
pip install --no-cache-dir --requirement requirements-dev.txt | |
- name: "Check code format" | |
run: | | |
make check | |
check-shell: | |
needs: [] | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Set up GitHub Actions" | |
uses: actions/checkout@v3 | |
- name: "Install shell script utilities" | |
run: | | |
sudo apt-get --yes install shellcheck | |
- name: "Check shell scripts format" | |
run: | | |
shellcheck --shell=sh $(find "scripts" -type f -name "*.sh") | |
validate: | |
needs: [check-python, check-shell] | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Set up GitHub Actions" | |
uses: actions/checkout@v3 | |
- name: "Set up Python 3.8" | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: "Install Python dependencies" | |
run: | | |
pip install packtivity | |
- name: "Check workflow steps syntax" | |
run: | | |
packtivity-validate "workflow/yadage/steps.yml#configure" | |
packtivity-validate "workflow/yadage/steps.yml#generate" | |
packtivity-validate "workflow/yadage/steps.yml#pythia" | |
packtivity-validate "workflow/yadage/steps.yml#delphes" | |
packtivity-validate "workflow/yadage/steps.yml#combine" |