Skip to content

Bump emoji from 2.2.0 to 2.8.0 #88

Bump emoji from 2.2.0 to 2.8.0

Bump emoji from 2.2.0 to 2.8.0 #88

Workflow file for this run

name: Python application
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r dev-requirements.txt
- name: Lint with pylint
run: |
pip install pylint_runner
pylint_runner --exit-zero --rcfile=.pylintrc
#Test with pytest