-
Notifications
You must be signed in to change notification settings - Fork 75
38 lines (34 loc) · 1.03 KB
/
pythonpackage.yml
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 package
on: [pull_request]
jobs:
python-check:
runs-on: ubuntu-latest
strategy:
max-parallel: 3
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install -U pip poetry
poetry --version
poetry install
- name: Run tests and linters
run: |
#!/bin/sh -e
git config --global user.email "action@github.com"
git config --global user.name "GitHub Action"
export PREFIX="poetry run python -m "
if [ -d 'venv' ] ; then
export PREFIX="venv/bin/"
fi
${PREFIX}black photoshop --check
${PREFIX}isort --check-only photoshop
${PREFIX}flake8 photoshop --max-line-length 120