Replaced python2 with python3 #251
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: Linter Actions Workflow | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
checkpatch: | |
name: Checkpatch | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkpatch | |
uses: open-education-hub/actions/checkpatch@main | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
super-linter: | |
name: Super Linter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Super Linter | |
uses: open-education-hub/actions/super-linter@main | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
typos: | |
name: Typos | |
runs-on: ubuntu-latest | |
steps: | |
- name: Typos | |
uses: open-education-hub/actions/typos@main |