[Dependency] Update Submitty from v23.08.01 to v23.10.00 (#13) #7
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: Localization CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
yaml-lint: | |
name: YAML Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install yamllint | |
run: sudo apt-get install -y yamllint | |
- name: Run yamllint | |
run: yamllint . | |
python-lint: | |
name: Python Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Install flake8 | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install flake8 flake8-bugbear | |
- name: Run flake8 | |
run: python3 -m flake8 |