소스 검색

Update pythonapp.yml

pull/2/head
Jérôme Deuchnord 6 년 전
committed by GitHub
부모
커밋
a6f1adbf15
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일22개의 추가작업 그리고 0개의 파일을 삭제
  1. +22
    -0
      .github/workflows/pythonapp.yml

+ 22
- 0
.github/workflows/pythonapp.yml 파일 보기

@@ -0,0 +1,22 @@
name: Python application

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip pipenv pylint pylintfileheader
pipenv sync -d
- name: Lint with flake8
run: |
pylint *.py

불러오는 중...
취소
저장