chore: initialize project with Poetry and remove Pipfile.lock #19
Workflow file for this run
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: Lint Code Base | |
# Run the workflow everytime a pull request is made | |
on: | |
push: | |
# Trigger workflow only for branches other than main, ignore for main | |
branches-ignore: | |
- main | |
jobs: | |
# specify the job key -> will be used as the job name | |
# if a job name isn't provided | |
super-lint: | |
# job name | |
name: Python Linter | |
# type of machine to run on | |
runs-on: ubuntu-latest | |
steps: | |
# checks out a copy of the repo onto the machine | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
# runs super-linter action | |
- name: Run Super-Linter | |
uses: github/super-linter@v3 | |
env: | |
DEFAULT_BRANCH: main | |
VALIDATE_PYTHON_BLACK: false | |
VALIDATE_PYTHON_ISORT: false | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |