728x90
반응형
github action
Workflow syntax for github actions
정말 간단함:: branch에 push나 pr이 있을 때 action이 trigged하게 할 수 있다. 위 문서만 봐도 쉽게 사용할 수 있다.
<repo>/.github/workflows/python-app.yml
자동으로 생성된 yml
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python application
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pytest
728x90
728x90
BIG
'Programming > 환경셋팅' 카테고리의 다른 글
neo-vim 설치 - CoC, Python - 실시간자동완성 적용 (3) | 2023.05.27 |
---|---|
추천: MAC 맥 개발자를 위한 설치 프로그램 (0) | 2023.03.21 |
Rabbit MQ - message queue (0) | 2020.06.24 |
gcp(google cloud platform) tpu 사용 (0) | 2020.06.23 |
ssh config (0) | 2020.06.20 |
댓글