Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

chore: update pyyaml version to 6.0.1 (#183) #500

chore: update pyyaml version to 6.0.1 (#183)

chore: update pyyaml version to 6.0.1 (#183) #500

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches:
- '**'
jobs:
run-pylint:
name: lint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.6', '3.8']
steps:
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- uses: actions/checkout@v2
- name: Install Dependencies
run: |
pip install -r requirements/ci.txt
- name: Run pylint commands
run: |
pycodestyle .
pylint tests