Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
38 lines (35 loc) · 947 Bytes

File metadata and controls

38 lines (35 loc) · 947 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Python application
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '2.7', '3.6', '3.7', '3.8', '3.9' ]
name: Python ${{ matrix.python-version }} test
steps:
- name: Checkout
uses: actions/checkout@v2.0.0
- name: Black Code Formatter
uses: lgeiger/black-action@master
with:
args: ". --check"
- name: Pylint
uses: cclauss/GitHub-Action-for-pylint@0.7.0
- name: Setup python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install tha package
run: python setup.py install
Morty Proxy This is a proxified and sanitized view of the page, visit original site.