Skip to content

Commit

Permalink
converted main.workflow to Actions V2 yml files
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Sep 27, 2019
1 parent a9ec900 commit 90f67be
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 38 deletions.
38 changes: 0 additions & 38 deletions .github/main.workflow

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
on: push
name: on push
jobs:
gitHubActionForPytest:
name: GitHub Action for pytest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: GitHub Action for pytest
uses: cclauss/GitHub-Action-for-pytest@master
with:
args: pytest --help
- name: GitHub Action for pylint
uses: cclauss/GitHub-Action-for-pylint@master
with:
args: pylint --help
- name: GitHub Action for Flake8
uses: cclauss/GitHub-Action-for-Flake8@master
with:
args: flake8 . --max-line-length=88
- name: Python Syntax Checker
uses: cclauss/Find-Python-syntax-errors-action@master

0 comments on commit 90f67be

Please sign in to comment.